jQuery UI 由 GUI 小部件、视觉效果和使用 HTML、CSS 和 jQuery 实现的主题组成。 jQuery UI 非常适合为网页构建 UI 接口。 jQuery UI Datepickers 小部件允许用户轻松直观地输入日期。
在本文中,我们将在进行一些外部修改后,使用 jQuery UI Datepicker refresh() 方法重新绘制日期选择器。此方法不接受任何参数。
用法:
$(".selector").datepicker("refresh");
CDN链接:首先,添加项目所需的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>
例:此示例演示 Query UI Datepicker refresh() 方法。
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 () {
$("#GFG").datepicker();
$("#btn").on('click', function () {
$("#GFG").datepicker("refresh");
alert("Widget Refreshed!");
});
});
</script>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>jQuery UI Datepicker refresh() Method</h3>
<p>Enter Date:<input type="text" id="GFG"></p>
<input type="button" id="btn" style="padding:5px 15px;"
value="Refresh the Widget">
</center>
</body>
</html>
输出:
参考: https://api.jqueryui.com/datepicker/#method-refresh
相关用法
- jQuery Mobile Flipswitch refresh()用法及代码示例
- jQuery Mobile Listview refresh()用法及代码示例
- jQuery Mobile Slider refresh()用法及代码示例
- jQuery UI Accordion refresh()用法及代码示例
- jQuery UI Button refresh()用法及代码示例
- jQuery Mobile Rangeslider refresh()用法及代码示例
- jQuery Mobile Toolbar refresh()用法及代码示例
- 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 show()用法及代码示例
- jQuery UI Datepicker widget()用法及代码示例
- jQuery UI Datepicker isDisabled()用法及代码示例
- jQuery UI Datepicker dayNamesShort用法及代码示例
注:本文由纯净天空筛选整理自ppatelkap大神的英文原创作品 jQuery UI Datepicker refresh() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。