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


JQuery 是否有属性[name]用法及代码示例


用法
attributeHas selector

说明:选择具有指定属性的元素,具有任何值。

  • 添加的版本:1.0jQuery( "[attribute]" )

    attribute: 一个属性名称。

例子:

将单击绑定到具有 id 的 div,该 id 将 id 添加到 div 的文本中。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>attributeHas demo</title>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<div>no id</div>
<div id="hey">with id</div>
<div id="there">has an id</div>
<div>nope</div>
 
<script>
// Using .one() so the handler is executed at most once
// per element per event type
$( "div[id]" ).one( "click", function() {
  var idString = $( this ).text() + " = " + $( this ).attr( "id" );
  $( this ).text( idString );
});
</script>
 
</body>
</html>

演示:

相关用法


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