作为学生评估的一部分,我正在尝试将 Datepicker 添加到我的在线表格中。我对这一切都很陌生,我遇到了问题。我已经下载并链接到我的 jquery UI 并且我已经根据 jquery UI 网站状态输入了代码但是当我点击 Date 字段时日历没有弹出我的表单,就像它建议的那样,我也从该站点获取示例,但我仍然无法使其正常工作。
<head>
<link href="javascript/jquery-ui-1.10.3.custom/css/south-street/jquery-ui-1.10.3.custom.css" rel="stylesheet">
<script src="javascript/jquery-ui-1.10.3.custom/js/jquery-1.9.1.js"></script>
<script src="javascript/jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.js"></script>
<script>
function validate(){
date = document.getElementById("datePicker").value;
errors = "";
if (date == ""){
errors += "Please supply a valid DOB \n";
}
}
</script>
</head>
<body>
<form name= "myform" method="post" action="" class="booking">
<fieldset>
<div>
<label for="datePicker" class="fixedwidth">Date</label>
<input type="text" name="datePicker" id="datePicker"/>
</div>
</fieldset>
</body>