こんにちは、送信ボタン付きの 2 つのラジオ ボタン yes と no を含むフォームを作成する必要があります。ユーザーがオプションを選択しない場合は、「オプションを 1 つ選択してください」というアラートがポップアップ表示されます。はい、送信ボタンを押すと、jquery ダイアログ ボックスが 2 つポップアップ表示されます。ダイアログボックスのボタン OK とキャンセル --> ユーザーが [OK] をクリックすると別のページに移動し、ラジオ ボタンと送信ボタンがない場合はダイアログ ボックスに同じ [OK] ボタンと [キャンセル] ボタンが表示され、[OK] の場合は次のページに移動する必要があります。別のページ。このようなものを作成しましたが、選択したラジオボタンを与えることができません
<form action="" method="get" name="radval">
<table width="100">
<tr>
<td width="41"><input name="xyz" type="radio" id="yes_chk" value="" required>
Yes</td>
<td width="47"><input name="xyz" type="radio" id="yes_chk" value="" required>
No</td>
</tr>
<tr>
<td colspan="4"><input type="submit" value="Submit" id="button"></td>
</tr>
</table></form>
JavaScript
<script src="js/jquery.reveal.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#button').click(function(e) { // Button which will activate our modal
$('#modal').reveal({ // The item which will be opened with reveal
animation: 'fade', // fade, fadeAndPop, none
animationspeed: 600, // how fast animtions are
closeonbackgroundclick: true, // if you click background will modal close?
dismissmodalclass: 'close' // the class of a button or element that will close an open modal
});
return false;
});
});
</script>
選択したラジオ ボタンに従ってページをリダイレクトするにはどうすればよいですか。私はjqueryを初めて使用しますが、何か助けはありますか?
前もって感謝します。