尝试保存和关闭页面时的IE浏览器,

时间:2015-03-09 09:00:22

标签: javascript jsp internet-explorer

我的JSP文件中有一个函数:

function saveAndClose()
{
    document.myForm.action=getContextPath()+'/MyController.do?method=save';
    document.myForm.submit();
    window.parent.document.location.reload();
}

当我在Firefox上测试时,一切正常,但是当我在IE上测试时,没有保存任何内容!

IE中未达到该操作!

当我评论这一行时:

window.parent.document.location.reload();

我到达了该动作,我的数据已保存。

真的我不知道为什么!

0 个答案:

没有答案