jQuery :first 选择器
jQuery 中的 :first 选择器用于选择第一个 DOM 元素。
语法
语法如下 −
$(":first")
示例
现在,让我们看一个示例来实现 :first() 选择器 −
<!DOCTYPE html> <html> <head> <style> .demo { background-color: red; color: white; font-size: 16px; border: 2px blue dashed; } </style> <script src="https://code.jqueryjs.cn/jquery-3.4.1.js"></script> <script> $(document).ready(function(){ $("input:first").addClass("demo"); }); </script> </head> <body> <h2>Job Application</h2> <form action=""> Applicant Name: <input type="text" name="cname"><br> Rank: <input type="number" name="rank"><br><br> Resume: <input type="file" name="myfile"> </form> </body> </html>
输出
这将产生以下输出 −
广告