标签:
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();
标签:
原文地址:http://www.cnblogs.com/fiya-z/p/5892111.html