我用Jquery弹出。我想关闭那个弹出窗口,因为它重定向到主页。但问题是页面是重定向到主页,但这是弹出窗口本身。 我想关闭弹出窗口然后想要重定向到主页。 解决方案是什么?
function showPopUp1(posturl, dialogarg,width) {
var url = posturl;
if (width == null || width == '') {
width = 830;
}
$.showModalDialog({
url: url,
dialogArguments: dialogarg,
height: 500,
width: width,
position: 'top',
scrollable: false,
onClose: function () {
var returnedValue = this.returnValue;
window.location.href = window.location;
if (returnedValue != null) {
var splitstring = returnedValue.toString().split(",");
}
}
});
}
谢谢, 巴勒特