当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery :image用法及代码示例


用法
image selector

说明:选择图像类型的所有元素。

  • 添加的版本:1.0jQuery( ":image" )

:image 等价于 [type="image"]

其他注意事项:

  • 因为 :image 是 jQuery 扩展而不是 CSS 规范的一部分,所以使用 :image 的查询无法利用本机 DOM querySelectorAll() 方法提供的性能提升。为了在现代浏览器中获得更好的性能,请改用[type="image"]

例子:

查找所有图像输入。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>image demo</title>
  <style>
  textarea {
    height: 45px;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<form>
  <input type="button" value="Input Button">
  <input type="checkbox">
  <input type="file">
  <input type="hidden">
  <input type="image">
  <input type="password">
  <input type="radio">
  <input type="reset">
  <input type="submit">
  <input type="text">
  <select>
    <option>Option</option>
  </select>
  <textarea></textarea>
  <button>Button</button>
</form>
<div></div>
 
<script>
var input = $( "input:image" ).css({
  background:"yellow",
  border:"3px red solid"
});
$( "div" )
  .text( "For this type jQuery found " + input.length + "." )
  .css( "color", "red" );
$( "form" ).submit(function( event ) {
  event.preventDefault();
});
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 :image。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。