java web开发部 有两个下拉框,我要做的是在选完第一个下拉框时,第二个下拉框才可选,代码该怎样写
2个回答
2014-12-03
展开全部
我稍微写了一下。不知道符不符合你的要求。
<html>
<head>
</head>
<body>
<p>this is the first options</p>
<select id="courses" onchange="runSelect();">
<option>select me</option>
<option>English</option>
<option>Math</option>
<option>Chinese</option>
</select>
<p>this is the second options</p>
<select id="interst" disabled>
<option>select me</option>
<option>book</option>
<option>art</option>
<option>dance</option>
</select>
<script>
var opInterst;
window.onload = function()
{
opInterst = document.getElementById("interst");
}
function runSelect()
{
opInterst.disabled = false;
}
</script>
</body>
</html>
追问
如果第一个下拉框取消了 第二个同时也不能 使用 该怎么 做
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询