码迷,mamicode.com
首页 > Web开发 > 详细

CSS3选择器:enabled 和 disabled

时间:2015-09-15 17:58:57      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CSS3 Selector</title>
<style>
input[type="text"]:enabled{
background-color: yellow;
}
input[type="text"]:disabled{
background-color: dimgrey;
}
</style>
</head>
<body>
<script>
function radio_change(){
var radio1 = document.getElementById("radio11");
var radio2 = document.getElementById("radio2");
var text = document.getElementById("text");
var p = document.getElementById("p1");
if(radio1.checked){
text.disabled="";
text.value = "hello";
p.innerHTML = "haha";
}
else{
text.value = "";
text.disabled ="disabled";
}
}
</script>
<input type="radio" id="radio11" name="radio" onchange="radio_change()">use
<input type="radio" id="radio2" name="radio" onchange="radio_change()">unuse
<input type="text" id="text" disabled>
<p id="p1"></p>
</body>
</html>

CSS3选择器:enabled 和 disabled

标签:

原文地址:http://www.cnblogs.com/htmlphp/p/4810571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!