JQuery学习08篇(表单类型过滤器)
程序员文章站
2022-06-10 14:08:47
...
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JQuery学习08篇(表单类型过滤器)</title>
<link rel="stylesheet" type="text/css" href="inputAndDiv.css">
</head>
<body style="background-color: #CCE8CF;">
<h3 style="color: #cd1636;">JQuery学习08篇(表单类型过滤器)</h3>
<form action="" style="width: 60%;">
<p>
<input type="text" value="江西省赣州市"/>
<input type="text" value="于都县"/>
</p>
<p>
<input type="password" value="123456"/>
</p>
<p>
<input type="checkbox" name="hobby"/>
<input type="checkbox" name="hobby"/>
</p>
<p>
<input type="radio" name="sex"/>
<input type="radio" name="sex"/>
</p>
</form>
</body>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
//如果我们不用表单类型过滤器的话,我们可以使用属性选择器
$('input[type="text"]').css('background', 'DarkSalmon');
//表单类型过滤器
$('input:text').css('background', 'BurlyWood');
$('input:password').css('background', 'DarkGray');
$('input:checkbox').prop('checked' , true);
$('input:radio').prop('checked' , true);
</script>
</html>
上一篇: leetcode题目训练4
下一篇: Mysql存储过程入门知识_MySQL