我想在单击对话框上的关闭 (X) 按钮时执行一些 javascript 功能。我测试了一些代码,但对我没有用。这样做
$(#dialog).close
{
function one();
function two();
...
}
tset 这不起作用:
<script>
function beh()
{
$(document).ready(function() {
$("#dialog").dialog({
beforeClose: function(event, ui) {
alert('hi');
},
width: 660,
height: 495,
closeOnEscape: false,
hide: "fadeout",
resizable: false,
}
);
});
}
</script>