嗨,我需要创建一个带有两个单选按钮是和否的表单,如果用户没有选择任何选项,则应该弹出一个警报说“请选择一个选项”,如果是并提交按钮,一个 jquery 对话框应该弹出两个对话框中的按钮 ok 和 cancel--> 如果用户单击 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的新手,有什么帮助吗?
提前致谢。