フォームradioform
のラジオがチェックされている場合、フォームsAddToBasket
を送信するにはどうすればよいですか?あなたは以下のようなJS関数を呼び出すことができONCHANGEラジオボタンのチェックフォームを送信
<form name="radioform" method="post" action="something1.php">
<input type="radio" onchange="this.form.submit();" class="option--input" id="radio1" name="radio" value="">
<input type="radio" onchange="this.form.submit();" class="option--input" id="radio2" name="radio" value="">
</form>
<form name="sAddToBasket" method="post" action="something2.php">
<input type="hidden" name="option1" value="value1"/>
<input type="hidden" name="option2" value="value2"/>
</form>