# 웹 개발/프레임워크

jquery 달력, 시간, 시계 입력기, datetimepicker, time , day

dev-jjong 2013. 5. 11. 14:19



<!DOCTYPE html>

<html>

<head>

<meta charset="euc-kr">

<title>Demo - jquery-simple-datetimepicker</title>


<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

<script type="text/javascript" src="http://sofootnet.cafe24.com/jquery.simple-dtpicker.js"></script>

<link type="text/css" href="http://sofootnet.cafe24.com/jquery.simple-dtpicker.css" rel="stylesheet" />


<style type="text/css">

footer{font-size:10pt;position:fixed;right:5px;bottom:5px;}

</style>

</head>

<body>

<header>

<h2>Demo - jquery-simple-datetimepicker</h2>

</header>

<h4>Append to Input-field</h4>

<input type="text" name="date" value="">


<script type="text/javascript">

$(function(){

$('*[name=date]').appendDtpicker();

});

</script>

<footer>

<a href="https://github.com/mugifly/jquery-simple-datetimepicker">jquery.simple-dtpicker.js (jquery-simple-datetimepicker)</a><br>

- Your feedback is highly appreciated :) 

</footer>

</body>

</html>