我有下一个代码:
submitAccionesDocs: function (typ) {
if (typ == "descargazip") {
var array = $("#accionesDocumentos").attr('action');
var actionCorrect = array.split("?")[0];
var actionNew = actionCorrect + "?type=" + typ;
$("#accionesDocumentos").attr('action', actionNew);
$("#accionesDocumentos").submit();
alert("submit");
$("#accionesDocumentos")[0].reset();
alert("clean");
$("#loadingimg").hide();
$("#loadingdiv").hide();
}
我用“ALERTS”调试它,我的问题是在函数 .submit() 中,此代码在 IE8 中不起作用。
尝试替换该部分
$("#accionesDocumentos").submit(function (e) {
e.preventDefault();
});
它没有用。任何需要的建议。