当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQuery UI Datepicker widget()用法及代码示例


jQuery UI 由 GUI 小部件、视觉效果和使用 HTML、CSS 和 jQuery 实现的主题组成。 jQuery UI 非常适合为网页构建 UI 接口。 jQuery UI Datepicker 小部件允许用户轻松直观地输入日期。

在本文中,我们将使用 jQuery UI Datepicker widget() 方法,该方法返回一个包含 datepicker 的 jQuery 对象。此方法不接受任何参数。

用法:

$(".selector").datepicker("widget");


方法:首先,添加项目所需的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 widget() 方法。

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 () {
                event.preventDefault();
                var wid = $("this").datepicker("widget");
                console.log(wid);
            });
        });
    </script>
</head>
  
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
  
        <h3>jQuery UI Datepicker widget() Method</h3>
          
        <p>Enter Date:<input type="text" id="GFG"></p>
  
        <input type="button" id="btn" 
            style="padding:5px 15px;" 
            value="widget() Method">
    </center>
</body>
  
</html>

输出:

参考: https://api.jqueryui.com/datepicker/#method-widget




相关用法


注:本文由纯净天空筛选整理自ppatelkap大神的英文原创作品 jQuery UI Datepicker widget() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。