form表单提交方式之1
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form表单提交方式之1相关的知识,希望对你有一定的参考价值。
html:
<form id="map_label_form" action="map_label_list.php" method="post" >
<input id="selectcboxvalue" name="idstring" type="hidden"/>
</form>
ps:selectcboxvalue的value实际上是多个以逗号隔开的id组成的字符串。
js提交:
var form=document.getElementById("map_label_form");
form.action+="?request=delete";
form.submit();
以上是关于form表单提交方式之1的主要内容,如果未能解决你的问题,请参考以下文章