刷新页面分两种情况:
1.普通页面刷新
window.location.reload()
2.window.showModalDialog 打开的模态窗口
在模态窗口需要添加标签<base target="_self"/>到head中
内部运行js:
var url=location.href;
var a=$("<a href='"+url+"' >reload...</a>").appendTo(document.body);
a.get(0).click();
两种刷新方式不能混用,否则无效