jQuery UI 实例 - 日期选择器(Datepicker)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI 日期选择器(Datepicker)示例</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function() {
$("#datepicker").datepicker();
});
</script>
</head>
<body>
<p>日期:<input type="text" id="datepicker"></p>
</body>
</html>
这段代码展示了如何在网页中使用jQuery UI的Datepicker组件来添加一个日期选择器。在页面加载完成后,Datepicker会被初始化,用户可以通过点击输入框来打开日期选择器。
评论已关闭