欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JQuery学习08篇(表单类型过滤器)

程序员文章站 2022-06-10 14:08:47
...

JQuery学习08篇(表单类型过滤器)

JQuery学习08篇(表单类型过滤器)

JQuery学习08篇(表单类型过滤器)

<!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>