-1
我想要一個jQuery UI datepicker
當我點擊一個文本框時出現。下面的代碼我沒有得到任何日期選擇器。jQuery:日期選擇器不起作用
<HTML>
<head>
</head>
<link rel="stylesheet" href="css/themename/jquery-ui.custom.css" />
<script src="js/jquery.min.js"></script>
<script src="js/jquery-ui.custom.min.js"></script>
<script>
$(document).ready(function(){
$("#date").click(function(){
$(this).datepicker();
});
});
</script>
<body>
<form>
date: <input type="text" name="date" id="date" />
</form>
</body>
</HTML>
爲什麼在這裏使用點擊處理程序?控制檯中有任何錯誤? –
http://jqueryui.com/datepicker/點擊「查看源代碼」 – Abhitalks