js动态更改Form表单action,进行提交

**********************************step1******************************************










商户名称:
法人姓名:








***************************************************step2***************************************

//导出excel
    function ExportXLS(){
$("#sys_indexMer_form").submit();
        }
    function ExportXLSInfo(){

var targetForm=document.forms[0]; 
//动态修改目标表单的action属性 
targetForm.action = "<%=path %>/mer/exportExcel!exportCsv.action";
//targetForm.method='POST';
//提交表单 
targetForm.submit();

    }

你可能感兴趣的:(jquery)