Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Joomla 中使用 JCEMediabox 插件。我想删除 JCEMediabox 在加载打开 popp JCEMediaBox.Popup.init() 的页面时添加的单击事件。我正在尝试使用 JCEMediaBox.Event.destroy(); 删除它 但它并没有删除该事件。单击链接时,它仍会打开弹出窗口。
为什么不尝试简单地覆盖点击功能?因此,无论事件触发器是什么,请尝试包含如下函数:
JCEMediabox.click(function(){ });
因此,一个空函数替换了先前为触发器设置的任何内容以弹出对话框。