我在jQuery中創建日期範圍選擇器並將其綁定到輸入文本字段。jQuery日期選擇器綁定到輸入文本字段錯誤
的代碼是這樣的:
<!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
$("#datepicker").datepicker();
});
</script>
</head>
<body style="font-size:62.5%;">
<form action="sample.php" method="post">
Start Date: <input type="text" name="startdate" id="datepicker"/>
End Date: <input type="text" name="enddate" id="datepicker"/>
<input type="submit" />
</form>
</body>
</html>
數據似乎是工作的開始日期輸入文本字段。當我選擇起始日期字段,顯示的日曆:
但是當我點擊結束日期輸入文本字段,永遠不會出現在日曆。我需要通過使用該日曆選擇日期開始和結束。
我的代碼中一定是錯的。誰能告訴我?
謝謝!
非常感謝您的幫助。 – 2012-03-19 08:11:28