jQuery :image 选择器

实例

使用 type="image" 选择 <input> 元素:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $(":image").css("background-color", "red");
  8. });
  9. </script>
  10. </head>
  11. <body>
  12. <form action="">
  13. Name: <input type="text" name="user"><br>
  14. Password: <input type="password" name="password"><br>
  15. Compatible: <input type="image" src="compatible_ie.gif" width="31" height="30">
  16. </form>
  17. </body>
  18. </html>

定义与用法

:image 选择器选择 type=image 的 input 元素。


语法

  1. $(":image")

分类导航