jQuery 文档说您可以通过以下命令调用 datepicker:
$("#datepicker").datepicker();
如果您单击文档页面上的“查看源代码”按钮,您可以看到他们已将其包装到ready函数中:
$(document).ready(function(){
$("#datepicker").datepicker();
});
编辑:它应该与 INPUT 一起使用(感谢您指出 Steerpike)。这是我写的测试,它有效,你自己试试:
<html>
<head>
<link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
<script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
<script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.datepicker.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#datepicker").datepicker();
});
</script>
</head>
<body>
<input type="text" id="datepicker" value="this is a test">
</body>
</html>