有没有办法从表单中只获取特定的信息集?例如
<form>
<input name='I want this' value='one' type=text />
<input name='and this' value='one' type=text />
<input name='but not this' value='one' type=text />
</form>
显然,我只想要前两个字段而不是第三个字段?我的网站上有一个用户清单,如下所示:
<form action="" method="POST">
<input name='item_id' value='1' type='hidden'>
<input type='button' name='slot1' value='1'>
<input type='button' name='slot2' value='2'>
<input name='item_id' value='2' type='hidden'>
<input type='button' name='slot1' value='1'>
<input type='button' name='slot2' value='2'>
</form>
我希望用户能够选择项目 1 并将其装备到插槽 1,但我现在能想到的唯一方法是让它们都是单独的表单。我觉得那将是糟糕的编码。