jQuery :text 选择器
jQuery 中的 :text 选择器用于选择文本类型的输入元素。
语法
语法如下所示:
$(":text")
示例
现在让我们看一个示例,以实现 jQuery :text 选择器 -
<!DOCTYPE html> <html> <head> <style> .one { background-color: green; color: white; font-size: 15px; border: 2px blue dashed; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(":text").addClass("one"); }); </script> </head> <body> <h2>Fill the Form</h2> <form action=""> Username: <input type="text" name="user"><br> Set Password: <input type="password" name="password"><br> Reserved:<input type="radio" name="category" value="r"><br> Unreserved<input type="radio" name="category" value="u"><br><br> Products: <select> <option>Accessories</option> <option selected="selected">Clothing</option> <option>Footwear</option> <option>Electronics</option> <option>Books</option> </select><br><br> <input type="reset" value="Reset"> <button type="submit">Submit</button> </form> </body> </html>
输出
将生成以下输出 -
广告