Thickbox 内的 jQuery UI 日期选择器

发布于 2024-10-14 10:35:17 字数 251 浏览 4 评论 0原文

我的网页上有以下标记和 JS: http://jsfiddle.net/R2Jj2/

看起来效果很好。

当我在 thickbox 窗口中打开此内容时,日期选择器无法正确加载。

知道如何让日期选择器工作吗?

I have the following markup and JS on a web page:
http://jsfiddle.net/R2Jj2/

It seems to work well.

When I open this content in a thickbox window the datepicker fails to load properly.

Any idea how I can get the datepicker to work?

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

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

发布评论

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

评论(1

爱,才寂寞 2024-10-21 10:35:17

日期选择器无法正常工作,因为它可能正在调用 onLoad 函数中的内容。尝试 Colorbox.js,它有一个专门用于处理此问题的 onComplete。

http://colorpowered.com/colorbox/

JavaScript/jQuery 无法在 ColorBox 内部运行。< /strong>

这通常是由于在元素加载到文档之前尝试访问该元素,可以通过将 JavaScript 移至 ColorBox 的 onComplete 回调来解决。

示例(使用 jQuery Forms 插件):
$('#login_window').colorbox({onComplete:function(){
$('form#login').ajaxForm();
}});

The datepicker isn't working correctly because it's probably calling stuff within the onLoad function. Try Colorbox.js, it has an onComplete specifically for handling this.

http://colorpowered.com/colorbox/

JavaScript/jQuery is not working inside of ColorBox.

This is often due to trying to access an element before it has been loaded into the document and can be resolved by moving the JavaScript into ColorBox's onComplete callback.

Example (using jQuery Forms plugin):
$('#login_window').colorbox({onComplete:function(){
$('form#login').ajaxForm();
}});

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