返回jQuery常......登陆

jQuery常用选择器

斜杠大叔2019-04-18 16:10:46287
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>jquery表单选择器</title>
	<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
</head>
<body>
<script type="text/javascript">
	$(document).ready(function(){
		// $(':enabled')所有激活的input元素(可以使用的input元素)
		// $(':disabled')所有禁用的input元素(不可以使用的input元素)
		// $(':selected')所有被选取的元素,针对于select元素
		// $(':checked')所有被选中的input元素
		// $('input:enabled').css('background','red')
		// $('input:disabled').css('background','blue')
		// $(':selected').css('color','blue')
		$(':checked').parent().css('color','red')
	})
</script>
<form>
	输入框1<input type="text" name="">
	输入框2<input type="text" name="">
	输入框3<input type="text" name="" disabled>
	输入框4<input type="text" name="">
	<select>
		<option>html</option>
		<option>css</option>
		<option selected="">JavaScript</option>
		<option>php</option>
	</select>
	爱好:
	<label><input type="checkbox" name="">看书</label>
	<label><input type="checkbox" name="">游戏</label>
	<label><input type="checkbox" name="" checked>打球</label>

</form>
</body>
</html>


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送