如何在jquerythickbox中使用其他jquery源文件,例如jquerycalender
我有一个 jquery 厚盒,它工作正常
现在,我如何将 jquery 日历实现到 jquery 厚盒中的文本字段,
下面是我的 html 代码
$(document).ready(function() {
$('form#hotel_search_popup').ajaxForm({
});
<form id="hotel_search_popup">
<input type="text" name="date"/>
</form
I have a jquery thick box and its working fine
Now, how can i implement the jquery calender to a text field in the jquery thick box
follwing is my html code
$(document).ready(function() {
$('form#hotel_search_popup').ajaxForm({
});
<form id="hotel_search_popup">
<input type="text" name="date"/>
</form
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
包含 jquery 库后,您只需要包含 jqueryui 文件即可。确保正确关闭脚本标签。还为您的日期输入提供一个 ID 属性,用作分配日期选择器的选择器,
例如
不是
那么你应该只需要
After you've included the jquery library you should just need to include the jqueryui file. Make sure you close the script tags properly. Also give your date input an ID attribute to use as the selector to assign the datepicker
e.g.
not
Then you should just need