日期:2014-05-16 浏览次数:20780 次
使用jquery实现,运行时需要保证在同级目录存在jquery的核心js文件"jquery-1.4.2.js"
<html>
<head>
<title>select.html</title>
<script src="jquery-1.4.2.js"></script>
<script language="javascript">
$().ready(function(){
$("select[name='buy']").unbind("change");
$("select[name='buy']").bind("change",function(){
if($(this).val()=="service") {
$("input[name='protecttime']").show();
} else {
$("input[name='protecttime']").hide();
}
});
});
</script>
</head>
<body>
<select name="buy">
<option value="default">-请选择-</option>
<option value="service">服务</option>
<option value="thing">百货</option>
</select>
<input type="text" name="protecttime" value="180天" style="display:none" />
</body>
</html>