探索前端经典:jQuery UI —— 重塑交互体验的开源神器
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery UI Datepicker Example</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script>
$(function() {
$("#datepicker").datepicker();
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
</html>
这个例子展示了如何使用jQuery UI库中的Datepicker widget来创建一个日期选择器。在页面加载完成后,通过jQuery的ready函数,我们初始化了Datepicker widget,使input元素变成一个日期选择器。这个例子简单而直接,展示了jQuery UI库为创建互动式网页提供的强大工具。
评论已关闭