我可以使用jquery显示多个文本框。 现在我想为该文本框添加日期选择器。 请帮我解决问题 提前致谢
答案 0 :(得分:0)
您可以使用解决方案https://jsfiddle.net/yvck28fc/
$('body').append(`<input type="text" id="datepicker">`);
$( "#datepicker" ).datepicker();
<link href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
首先,我添加了input textbox
,然后为其分配datepicker
。
我用jQuery datepicker
参考:https://jqueryui.com/datepicker/
希望这会对你有所帮助。