如何使用jQuery UI来显示一个总是可见的datepicker小部件?
解决方法
这很简单。保留您的jQuery代码,但将其分配给一个< div>而不是输入框。
Date: <div id="datepicker"></div> <script> $(function() { $("#datepicker").datepicker(); }); </script>
一个功能示例生活在jQuery UI webpage for the datepicker widget,我还包括一个下面。
$(function() { $("#datepicker").datepicker(); });
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css"> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script> <div id="datepicker"></div>