:password 选择器| jqueryAPI 2.2 中文手册- AspRain.cn 致力于Web开发技术翻译整理

jQuery API 2.2.0

:password 选择器

分类:选择器 > 表单选择器 | 选择器 > jQuery扩展选择器

password selector

描述:选择所有type="password"的<input>元素。

加入于: 1.0
jQuery( ":password" )

$( ":password" )等同于$( "[type=password]" )。与别的伪类选择器一样(它们以一个“:”开头),建议在它前面用一个标签名或者别的选择器,否则,会潜在地使用普遍选择器("*")。换句话说,光是用$(':password'),等于使用了$("*:password"),所以必须改用$( "input:password" )来代替它。

其它说明

  • 因为:password是一个jQuery扩展,并不是CSS规范文档的一部分,使用:password查询,不能充分利用原生DOM的querySelectorAll()方法来提高性能。要想在现代浏览器中获得更好的性能,请使用[type="password"]来代替它。

示例

找到所有的type="password"的<input>元素。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>password demo</title>
  <style>
  textarea {
    height: 45px;
  }
  </style>
  <script src="https://code.jquery.com/jquery-1.10.2.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:password" ).css({
  background: "yellow",
  border: "3px red solid"
});
$( "div" )
  .text( "For this type jQuery found " + input.length + "." )
  .css( "color", "red" );
 
// Prevent form submission
$( "form" ).submit(function() {
  return false;
});
</script>
 
</body>
</html>

演示结果

如果网页上不能运行示例,请点击http://www.asprain.cn/jQueryAPI/password-selector.htm查看示例。

如果你觉得本文档对你有用,欢迎给翻译作者支付宝打赏,支持翻译作者源源不断翻译更多有用的技术文档。