我的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();
我到达了该动作,我的数据已保存。
真的我不知道为什么!