性别:
男 女
如果值为男性,则提交按钮将链接到第0003页
如果值为女性,则提交按钮将链接到第0002页 在这里我卡住了,根据单选按钮值的变化,可以在提交按钮中对不同的页面链接进行编码。
请提供可以帮助我的答案。
答案 0 :(得分:1)
试试这个
<input type="radio" name="male" id="male" />Check One <br />
<input type="radio" name="female" id="female" />Check Two
<input type="button" name="submit" value="submit" onclick="chekcSubmitType()" />
<script>
function chekcSubmitType()
{
if(document.getElementById('male').checked)
{
window.location="first page name";
}
else if(document.getElementById('female').checked)
{
window.location="second page name";
}
}
</script>