jQuery 委托关闭 Boxy 对话框
目前,我正在使用以下命令来关闭对话框
<button onClick="Boxy.get(this).hideAndUnload(); return false;">Cancel</button>
,但我想做一些类似
<button class="btnCancel">Cancel</button>
关闭对话框的
操作,我尝试使用 jquery delegate()
来关闭对话框,但它不起作用。仅供参考,我正在使用 ajax 动态加载整个表单。例如。
$.get("add/text.html", function(data) {
var b = new Boxy(data, {
title: "Add Text Post",
modal: true,
});
$.getScript("js/tinymce.config.js");
b.show();
})
currently, i am using the following to close a dialog
<button onClick="Boxy.get(this).hideAndUnload(); return false;">Cancel</button>
but i want to do something like
<button class="btnCancel">Cancel</button>
to close the dialog
i tried to use jquery delegate()
to close the dialog but it does not work. fyi, i am loading the whole form dynamically using ajax. eg.
$.get("add/text.html", function(data) {
var b = new Boxy(data, {
title: "Add Text Post",
modal: true,
});
$.getScript("js/tinymce.config.js");
b.show();
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Boxy 网站 中,您可以使用 .close css 类:
至于第二个想法:你尝试过使用这种逻辑吗?
From the Boxy website you could use .close css class:
As for a second thought: Have you tried using this kind of logic?