Thickbox 和 jquery ui 日期选择器

发布于 2024-08-19 00:45:32 字数 103 浏览 6 评论 0原文

我在我的asp.net页面之一中使用thickbox和jquery ui datepicker,datepicker不可见,我也更改了datepicker的z索引,但没有任何结果,我应该做什么

i am using thickbox with jquery ui datepicker in one of my asp.net page, the datepicker is not visible , i changed the z index of the datepicker also but nothing is coming out, what should i do

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

请别遗忘我 2024-08-26 00:45:32

您应该在厚框出现之后初始化日期选择器(调用插件函数)。通常,对打开厚盒的链接进行延迟调用即可,例如:

$("#thickbox_link").click(function(){
    setTimeout(function(){ 
        $("#datepickerdiv").datepicker();
    }, 100);
});

You should initialize the date picker (calling the plugin function) AFTER thickbox appears. Usually a delayed call on the link opening the thickbox will do, example:

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