jQuery :text 选择器
实例
选择所有 type="text" 的 <input> 元素:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(":text").css("background-color", "red");
});
</script>
</head>
<body>
<form action="">
名称: <input type="text" name="user"><br>
密码: <input type="password" name="password"><br>
<button type="button">无用的按钮</button>
<input type="button" value="另一个无用按钮"><br>
<input type="reset" value="重置">
<input type="submit" value="提交"><br>
</form>
</body>
</html>
定义与用法
:text
选择器选择所有 type="text" 的 input 元素
语法
$(":text")