<html>
<head>
<script>
window.onload = function(){
var opts = document.getElementById("select")
var value = //这个值就是你获取的值
if(value!=""){
for(var i=0i<opts.options.lengthi++){
if(value==opts.options[i].value){
opts.options[i].selected = 'selected'
alert(opts.options[i].value)
break
}
}
}
}
</script>
</head>
<body>
<select id="select">
<option value="1">一</option>
<option value="2">二</option>
<option value="3">三</option>
</select>
</body>
</html>
可以直接把下面的代码复制到你的网页里运行。我在IE8测试通过<script>
function goto(){
if(document.getElementById('radio1').checked){
window.location.href="http://www.baidu.com"
return
}
if(document.getElementById('radio2').checked){
window.location.href="http://www.sina.com"
return
}
alert("请至少选择一项")
//不要使 document.getElementByName 某些浏览器不支持
}
</script>
<form id="form1" name="form1" method="post" action="">
<input type="radio" name="radio" id="radio1" value="1" />使用邮件找回
<input type="radio" name="radio" id="radio2" value="2" />使用手机找回
<input type="button" name="button" id="button" value="下一步" onclick="goto()" />
</form>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)