必要に応じて、コードを使用してフォーム内のラジオ ボタンとチェックボックスをリセットする必要があります。
リセットボタンを配置し、CSS を使用して非表示にする間接的なアプローチを使用しています。
<form class="form-horizontal form form-existing" role="form" id="form-existing" action="">
<input type="reset" name="reset-form-new" id="resetFormNew" value="" />
<div class="radio">
<label>
<input type="radio" name="new-turnover" id="new-turnover" value="€1 000 - €5 000"/> €1 000 - €5 000
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="new-turnover" id="new-turnover" value="€50 000 - €20 0000"/> €50 000 - €20 0000
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="new-preference" value="Mobile Phones"> Mobile phones
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="new-preference" value="Accessories"> Accessories
</label>
</div>
それから私はそれをクリックしようとします$("#resetFormNew").trigger("click");
これにより、すべてのテキスト ボックスがリセットされますが、ラジオ ボタンとチェック ボックスはリセットされません。
どこが間違っていますか?