<form method="post" action="" id="subForm" name="form1">
<table>
<tr>
<td></td>
<td></td>
</tr>
</table>
</form>
导航条上面有批量删除(onclick="delall()")和批量下载(onclick="downall()")两个按钮
第一种情况:表单里面没有提交按钮(submit)
js里面写:
delall(){
document.form1.action="__APP__/Document/Collection/delFile"; //改变form里面action的值
$("#subForm").submit(); //提交表单
}
downall(){
document.form1.action="__APP__/Document/Collection/downFile";
$("#subForm").submit();
}
第二种情况:表单里面有提交按钮
delall(){
document.form1.action="__APP__/Document/Collection/delFile"; //改变form里面action的值
}
downall(){
document.form1.action="__APP__/Document/Collection/downFile";
}
时间: 2024-10-20 21:20:20