jquery如何查询是否有某个属性值-LMLPHP

本教程操作系统:Windows10系统、jQuery3.6.0版本、Dell G3电脑。

在 jQuery 中,可以使用 `.attr()` 方法获取或设置元素的属性值。

如果想查询一个元素是否具有某个特定属性,可以使用 `.hasAttr()` 方法。

例子如下:

//html
<p id="my-paragraph" class="my-class" data-role="paragraph">Lorem ipsum</p>
登录后复制

如果想检查这个段落元素是否具有 `data-role` 属性以及它的值是否为 `paragraph`,代码如下:

//javascript
if ($("#my-paragraph").hasAttr("data-role") && $("#my-paragraph").attr("data-role") === "paragraph") {
  // do something if the attribute exists and has the expected value
} else {
  // do something else if the attribute doesn't exist or has a different value
}
登录后复制

注意 `hasAttr()` 方法不是 jQuery 的内置方法,需要使用以下代码扩展 jQuery 来添加这个方法:

//javascript
$.fn.hasAttr = function(name) {
    return this.attr(name) !== undefined;
};
登录后复制

以上就是jquery如何查询是否有某个属性值的详细内容,更多请关注Work网其它相关文章!

09-06 02:40