jquery dialog 关闭刷新父页面
jquery 弹出dialog 在关闭以后回到父页面并刷新
定义关闭事件
$(document).ready(function(){
$("#specification").dialog({title:'技术规范书列表',width:650,hight:300,autoOpen:false,modal:true,resizable:true});
$( "#specification" ).dialog({
close: function(event, ui) {
window.location.reload();
}
});
});
另外还可以在关闭前进行一些判断 方法示例如下
$( "#specification" ).dialog({
beforeclose: function(event, ui) {
window.location.reload();
}
});
相关推荐
apowerfulman 2020-03-03
hustlei 2011-03-03
Mexican 2011-08-31
larrywangsun 2011-08-09
TTHHVV 2011-09-28
87384559 2014-11-11
xuewenke 2015-11-04
火星的你 2015-10-25
王磊的程序员之路 2019-06-19
十一郎的IT 2013-10-29
攻城师 2019-06-28
89453862 2016-05-13
SinhaengHhjian 2015-11-04
sunnylinner 2014-11-11