我想要一个javascript或jquery我不知道哪一个当我按下fift电台buton然后点击下一步将我发送到另一个html页面。 如果你能给我一个例子,我将不胜感激。 P.S抱歉我的英语不好:D 这是一个例子
</head>
<body>
<p>please select a year</p>
<form action="picture2.html">
<input type="radio" name="answer" value="2years">0-2 years<br>
<input type="radio" name="answer" value="2years">3-5 years<br>
<input type="radio" name="answer" value="2years">6-10 years<br>
<input type="radio" name="answer" value="2years">More than 10 years<br>
<input type="radio" id="demo" name="answer" value="terminate">i have 20 years (if this is selected go to another html page)<br>
<input type="button" id="button" onclick="myFunction" value="Next">
</form>
<script>
$(function(){
$("input:radio:fifth").click(myFunction();
});
function myFunction()
{
document.getElementById("button").onclick="window.location.href='picture2.html'";
}
</script>
</body>
</html>
答案 0 :(得分:0)
请按照以下链接进行操作:
if ($('#rdo1').is(':checked')) {
window.location.replace("http://www.stackoverflow.com");
}
else if ($('#rdo2').is(':checked')) {
window.location.replace("http://www.exchange.com");
}