我有2種形式:複製複選框標記爲另一種形式
富:
<form id="foo_form" method="post" action="foo">
<input class="foo checkbox" id="foo_select_1" name="ids[]" type="checkbox" value="1" />
<input class="foo checkbox" id="foo_select_2" name="ids[]" type="checkbox" value="2" />
<input class="foo checkbox" id="foo_select_3" name="ids[]" type="checkbox" value="3" />
...
<input type="submit" value="action 1" />
</form>
條:
<form id="bar_form" method="post" action="bar">
<input class="bar checkbox" id="bar_select_1" name="ids[]" type="checkbox" value="1" />
<input class="bar checkbox" id="bar_select_2" name="ids[]" type="checkbox" value="2" />
<input class="bar checkbox" id="bar_select_3" name="ids[]" type="checkbox" value="3" />
...
# some other input fileds here
<input type="submit" value="action 2" />
</form>
我需要JS(jQuery的),對於每一個變化複選框foo
將在bar
更改相應的複選框。
這樣做的主要目標是對相同的複選框有兩種不同的操作。我想用CSS將bar
隱藏起來,只留下可見的提交按鈕。所有描述here
您忘了發佈您嘗試過的JavaScript,但無法正常工作。 – j08691
在這種情況下,我所知道的是它應該是'$('。foo checkbox')。change(function(){...})''。我不知道設置或取消設置的價值。 MrCode的答案看起來很有希望。 – pawel7318
我希望HTML有''submit'方法'和'action'而不是'form'。 – pawel7318