(一)
提交表单:
<form name="form">
<a href="javascript:document.form.submit()">填好了,立即发布</a>
(二)
传参数:
(三)
JS动态改变Action
function regist() {
targetForm =document.forms[0];
targetForm.action = "/XX/XX/XX.action";
targetForm.submit();
}
<input type="button" onclick="regist()" value="删除">
(四)收集中