jQuery中的:input选择器
jQuery中的:input选择器是用来选择输入元素的。这个选择器也用于按钮元素。
语法:
$(":input")
注意: jQuery :input selector不仅可以选择输入元素,还可以选择Buttons, Dropdowns和Textarea元素。
例子:这个例子使用:input选择器来计算所有的输入元素。
<!DOCTYPE html>
<html>
<head>
<title>
jQuery :input Selector
</title>
<style>
body {
width: 35%;
height: 150px;
border: 2px solid green;
padding: 35px;
margin: 10px;
}
</style>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
</head>
<body>
<input type="text" value="GeeksforGeeks">
<button type="button">
Simple Button
</button><br>
<select>
<option>Option</option>
</select>
<textarea></textarea>
<h4 id="GFG"></h4>
<!-- jQuery code to count all elements
selected by :input selector -->
<script>
(document).ready(function() {
var allInputs =(":input");
$("#GFG").text("Found " + allInputs.length
+ " elements selected.");
});
</script>
</body>
</html>
输出: