jQuery :image 选择器
jQuery 中的 :image 选择器用于选择所有 type=”image” 的 input 元素。
语法
语法如下 −
$(":image")
示例
现在让我们看一个实现 :image() 选择器的示例 −
<!DOCTYPE html> <html> <head> <style> .demo { background-color: gray; border: 2px yellow dashed; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(":image").addClass("demo"); }); </script> </head> <body> <h2>Login</h2> <form action=""> Student Name: <input type="text" name="sname"><br> Student ID: <input type="text" name="sid"><br><br> Learn MySQL: <input type="image" src="https://tutorialspoint.com/images/MySQL.png" width="31" height="30"> </form> </body> </html>
输出
这将生成以下输出 −
广告