表单提交在IE8,Mozilla和Chrome中运行良好。但它在IE9,IE11中无法正常工作。它不会抛出任何错误,当我点击提交按钮时,它仍然保留在同一页面上。行动没有发生。我们尝试了很多方法来解决问题。
该代码是在4年前使用原生javascript开发的。
// This is function triggers when i click submit button.
function fnUpdateCase() {
document.global_form.node.value = "create_parent_case";
// submit the global form
document.global_form.submit();
}