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.
当我单击标准 X 按钮时,我想设置一些自定义功能。我已经浏览了 API 和所有相关信息,但在这方面它是完全贫瘠的。对于这样一个常用的软件,文档非常糟糕,而且相当不合标准。
我想要做的是当单击 X 时我希望它运行一些自定义代码。不幸的是,X 按钮没有 id,也没有关于如何直接访问它的文档。我在这里看到了建议用户创建“关闭”按钮的答案,但这似乎毫无意义,因为它已经附带了一个,而且我不希望在窗口底部有一个关闭按钮,而是在标题中酒吧。
尝试这个
$(".ui-dialog-titlebar-close").click( function() { //some code });
您可以使用:
$( "#dialog" ).dialog({ beforeClose:function(e){ //do something here } });