jQuery UI 由 GUI 小部件、视觉效果和使用 HTML、CSS 和 jQuery 实现的主题组成。 jQuery UI 非常适合为网页构建 UI 接口。 jQuery UI Datepickers 小部件允许用户轻松直观地输入日期。
在本文中,我们将使用 jQuery UI Datepicker isDisabled() 方法来检查日期选择器是否已被禁用。此方法不接受任何参数。
用法:
var isDisabled = $(".selector").datepicker("isDisabled");
方法:首先,添加项目所需的jQuery UI脚本。
<link href = “https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css” rel = “stylesheet”>
<script src = “https://code.jquery.com/jquery-1.10.2.js”></script>
<script src = “https://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>
例:此示例演示 jQuery UI Datepicker isDisabled() 方法。
HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href=
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
rel="stylesheet">
<script src=
"https://code.jquery.com/jquery-1.10.2.js">
</script>
<script src=
"https://code.jquery.com/ui/1.10.4/jquery-ui.js">
</script>
<!-- jQuery code -->
<script>
$(function () {
$("#dateID").datepicker();
$("#dateID").datepicker("disable");
$("#btn").on('click', function () {
var isDisabled = $("#dateID").datepicker("isDisabled");
alert("Value of isDisabled() Method:" + isDisabled);
});
});
</script>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>jQuery UI Datepicker isDisabled() Method</h3>
<p>Enter Date:<input type="text" id="dateID"></p>
<input type="button" id="btn"
style="padding:5px 15px;"
value="Check for Disabled Widget">
</center>
</body>
</html>
输出:
参考: https://api.jqueryui.com/datepicker/#method-isdisabled
相关用法
- jQuery UI Datepicker setDate()用法及代码示例
- jQuery UI Datepicker getDate()用法及代码示例
- jQuery UI datepicker option()用法及代码示例
- jQuery UI Datepicker hide()用法及代码示例
- jQuery UI Datepicker destroy()用法及代码示例
- jQuery UI Datepicker dailog()用法及代码示例
- jQuery UI Datepicker refresh()用法及代码示例
- jQuery UI Datepicker show()用法及代码示例
- jQuery UI Datepicker widget()用法及代码示例
- jQuery UI Datepicker dayNamesShort用法及代码示例
- jQuery UI Datepicker altFormat用法及代码示例
- jQuery UI Datepicker altField用法及代码示例
- jQuery UI Datepicker buttonText用法及代码示例
- jQuery UI Datepicker appendText用法及代码示例
- jQuery UI Datepicker autoSize用法及代码示例
- jQuery UI Datepicker showButtonPanel用法及代码示例
- jQuery UI Datepicker showOn用法及代码示例
- jQuery UI Datepicker changeMonth用法及代码示例
- jQuery UI Datepicker closeText用法及代码示例
- jQuery UI Datepicker changeYear用法及代码示例
注:本文由纯净天空筛选整理自ppatelkap大神的英文原创作品 jQuery UI Datepicker isDisabled() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。