如何在jquerythickbox中使用其他jquery源文件,例如jquerycalender

发布于 2024-11-26 09:48:06 字数 305 浏览 5 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄荷→糖丶微凉 2024-12-03 09:48:06

包含 jquery 库后,您只需要包含 jqueryui 文件即可。确保正确关闭脚本标签。还为您的日期输入提供一个 ID 属性,用作分配日期选择器的选择器,

例如

<script src="src"></script>

不是

那么你应该只需要

$(function(){
    $('#date').datepicker();
});

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.

<script src="src"></script>

not

Then you should just need

$(function(){
    $('#date').datepicker();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文