jQuery委托关闭Boxy对话框

时间:2010-06-19 15:48:06

标签: jquery delegates boxy

目前,我正在使用以下内容关闭对话框

<button onClick="Boxy.get(this).hideAndUnload(); return false;">Cancel</button>

但我想做点什么

<button class="btnCancel">Cancel</button>

关闭对话框

我尝试使用jquery delegate()来关闭对话框,但它不起作用。 fyi,我正在使用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();
})

1 个答案:

答案 0 :(得分:3)

Boxy website你可以使用 .close css类:

  

.close

Any elements with this class will be hooked up to close the dialog on
     

点击。

至于第二个想法:你尝试过使用这种逻辑吗?

    $('.btnCancel').click(function(){
     Boxy.get(this).hideAndUnload(); return false;
});