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();
时间: 2024-11-03 20:59:21