2014-01-05 335 views
-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> 
+1

爲什麼在這裏使用點擊處理程序?控制檯中有任何錯誤? –

+0

http://jqueryui.com/datepicker/點擊「查看源代碼」 – Abhitalks

回答

4

試試這個

$(document).ready(function(){ 
    $("#date").datepicker(); 
}); 

應在日期選擇器,當您單擊文本框,無需綁定它的點擊功能。