以下是关于 jQuery UI 的 Datepicker showOn 选项的完整攻略:
jQuery UI 的 Datepicker showOn 选项
在 jQuery UI 中,可以使用 datepicker 方法创建一个日期选择器。showOn 选项可以指定何时显示日期选择器。
语法
$(selector).datepicker({
showOn: string
});
其中,selector 是要应用 datepicker() 方法的元素的选择器,showOn 是一个字符串,可以是 "focus"、"button" 或 "both"。默认值为 "focus"。
示例一:当输入框获得焦点时显示日期选择器
<!DOCTYPE html>
<html>
<head>
<title>jQuery UI Datepicker showOn 选项</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/smoothness/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
<script>
$(document).ready(function(){
$("#datepicker").datepicker({
showOn: "focus"
});
});
</script>
</head>
<body>
<input type="text" id="datepicker">
</body>
</html>
这将创建一个日期选择器,当输入框获得焦点时显示日期选择器。
示例二:当单击按钮时显示日期选择器
<!DOCTYPE html>
<html>
<head>
<title>jQuery UI Datepicker showOn 选项</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/smoothness/jquery-ui.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
<script>
$(document).ready(function(){
$("#datepicker").datepicker({
showOn: "button",
buttonImage: "calendar.png",
buttonImageOnly: true
});
});
</script>
</head>
<body>
<input type="text" id="datepicker">
</body>
</html>
这将创建一个日期选择器,当单击按钮时显示日期选择器。
总结:
在 jQuery UI 中,可以使用 datepicker 方法创建一个日期选择器。showOn 选项可以指定何时显示日期选择器。
以上是关于 jQuery UI Datepicker showOn 选项的完整攻略。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:jQuery UI Datepicker showOn选项 - Python技术站