the situation I m struggling with is that there are more forms on the page that looks like this (the hiddenId is different in each form):
<form method="post">
<input type="hidden" name="hiddenId" value="111222">
<input type="submit" value="Proceed">
</form>
<form method="post">
<input type="hidden" name="hiddenId" value="111333">
<input type="submit" value="Proceed">
</form>
我如何用javascript(我不使用jQuery)提交具体形式,包括隐蔽的表格 理想价值吗? 感谢你的帮助!