Jquery Masked 输入插件无法在 FancyBox(Lightbox) 中工作

发布于 2024-10-03 18:18:43 字数 723 浏览 4 评论 0原文

我正在使用这里的 jQuery Masked Input PluginDigital Bush< /a>

我还使用 jQuery FancyBox 插件。

据我所知,他们在一起相处得不好


My masked inputs do not work if in the FancyBox, though they work outside (same id #phone). FancyBox displays fine.

花哨的框位于页面上,页面加载时 display: none...所以我尝试使用 callbackOnShow 设置,但 id 不想工作。


JAVASCRIPT警报功能不会触发

$(document).ready(function() {  
   loadScroll();  
   $("a.inline").fancybox({  
       'callbackOnShow' : function(){alert('shown');}  
   });  
});

I'm using the jQuery Masked Input Plugin from here: Digital Bush

I'm also using the jQuery FancyBox plugin.

As far as I can tell, they don't play nice together.


My masked inputs do not work if in the FancyBox, though they work outside (same id #phone). FancyBox displays fine.

The fancy box is on the page, display: none at page load....so I attempted to use the callbackOnShow setting, but id does not want to work.


JAVASCRIPT:The alert function won't fire

$(document).ready(function() {  
   loadScroll();  
   $("a.inline").fancybox({  
       'callbackOnShow' : function(){alert('shown');}  
   });  
});

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

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

发布评论

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

评论(1

百合的盛世恋 2024-10-10 18:18:43

找到了,callbackOnShow应该是onComplete

$(document).ready(function() {  
   loadScroll();  
   $("a.inline").fancybox({  
       'onComplete' : function(){alert('shown');}  
   });  
})


Found here: fanbcyBox/Blog

Found it, callbackOnShow should be onComplete.

$(document).ready(function() {  
   loadScroll();  
   $("a.inline").fancybox({  
       'onComplete' : function(){alert('shown');}  
   });  
})


Found here: fanbcyBox/Blog

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