- HTML 教程
- HTML - 首页
- HTML - 路线图
- HTML - 简介
- HTML - 历史与演变
- HTML - 编辑器
- HTML - 基本标签
- HTML - 元素
- HTML - 属性
- HTML - 标题
- HTML - 段落
- HTML - 字体
- HTML - 块
- HTML - 样式表
- HTML - 格式化
- HTML - 引用
- HTML - 注释
- HTML - 颜色
- HTML - 图片
- HTML - 图片地图
- HTML - Iframes
- HTML - 短语元素
- HTML - 元标签
- HTML - 类
- HTML - ID
- HTML - 背景
- HTML 表格
- HTML - 表格
- HTML - 表头和标题
- HTML - 表格样式
- HTML - 表格 Colgroup
- HTML - 嵌套表格
- HTML 列表
- HTML - 列表
- HTML - 无序列表
- HTML - 有序列表
- HTML - 定义列表
- HTML 链接
- HTML - 文本链接
- HTML - 图片链接
- HTML - 邮箱链接
- HTML 颜色名称和值
- HTML - 颜色名称
- HTML - RGB
- HTML - HEX
- HTML - HSL
- HTML 表单
- HTML - 表单
- HTML - 表单属性
- HTML - 表单控件
- HTML - 输入属性
- HTML 媒体
- HTML - 视频元素
- HTML - 音频元素
- HTML - 嵌入多媒体
- HTML 头部
- HTML - Head 元素
- HTML - 添加 Favicon
- HTML - Javascript
- HTML 布局
- HTML - 布局
- HTML - 布局元素
- HTML - 使用 CSS 的布局
- HTML - 响应式设计
- HTML - 符号
- HTML - 表情符号
- HTML - 样式指南
- HTML 图形
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - 拖放 API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web 存储
- HTML - 服务器发送事件
- HTML 其他
- HTML - 文档对象模型 (DOM)
- HTML - MathML
- HTML - 微数据
- HTML - IndexedDB
- HTML - Web 消息传递
- HTML - Web CORS
- HTML - Web RTC
- HTML 演示
- HTML - 音频播放器
- HTML - 视频播放器
- HTML - 网页幻灯片
- HTML 工具
- HTML - Velocity Draw
- HTML - 二维码
- HTML - Modernizer
- HTML - 验证
- HTML - 颜色选择器
- HTML 参考
- HTML - 速查表
- HTML - 标签参考
- HTML - 属性参考
- HTML - 事件参考
- HTML - 字体参考
- HTML - ASCII 码
- ASCII 码表查找
- HTML - 颜色名称
- HTML - 实体
- MIME 媒体类型
- HTML - URL 编码
- 语言 ISO 代码
- HTML - 字符编码
- HTML - 已弃用的标签
- HTML 资源
- HTML - 快速指南
- HTML - 有用资源
- HTML - 颜色代码生成器
- HTML - 在线编辑器
HTML - DOM 元素 hasAttributes() 方法
hasAttributes() 方法检查 HTML DOM 中的元素是否具有属性。如果元素具有一个或多个属性,则返回“true”,否则返回“false”。
注意:hasAttribute() 方法检查特定属性的存在,而 hasAttributes() 方法检查元素是否根本有任何属性。
语法
element.hasAttributes();
返回值
此方法返回一个布尔值:如果元素具有属性,则返回“true”;否则返回“false”。
HTML DOM 元素“hasAttributes()”方法示例
以下是一些 hasAttribute() 方法的示例,它检查 HTML DOM 元素中特定属性的存在。
检查 Div 元素是否有任何属性
此示例演示如何使用 hasAttribute() 方法检查任何属性,然后在单击按钮时显示结果。它检查id=exampleDiv 的<div>元素是否具有任何属性。
<!DOCTYPE html> <html lang="en"> <head> <title> HTML DOM Element hasAttributes() Method </title> </head> <body> <h1>HTML - DOM Element</h1> <h2>hasAttributes() Method</h2> <div id="exampleDiv" title="Sample Div"> Does it has any attributes? </div> <br> <button onclick="checkAttributes()"> Check Attributes </button> <p id="result"></p> <script> function checkAttributes() { const divElement = document.getElementById ('exampleDiv'); document.getElementById('result').textContent= "The div has attributes."; } </script> </body> </html>
检查 Body 元素的属性
此示例检查 body 元素是否具有任何属性。由于此示例中的 body 元素没有任何属性,因此 hasAttributes() 方法返回 false 并显示相应的讯息。
<!DOCTYPE html> <html lang="en"> <head> <title> HTML DOM Element hasAttributes() Method </title> </head> <body> <h1>HTML - DOM Element </h1> <h2>hasAttributes() Method</h2> <p>Does Body element has any attribute?</p> <button onclick="checkAttributes()"> Check Body Attributes </button> <p id="result"></p> <script> function checkAttributes() { const bodyElement = document.body; document.getElementById('result').textContent= "Body element does not have any attributes."; } </script> </body> </html>
检查锚标签是否具有属性
此示例检查锚点(<a>)标签在 HTML 元素中是否具有任何属性,并相应地显示消息。
<!DOCTYPE html> <html lang="en"> <head> <title> HTML DOM Element hasAttributes() Method </title> </head> <body> <h1>HTML - DOM Element</h1> <h2>hasAttributes() Method</h2> <p>Checks if Anchor tag has any Attributes</p> <a id="myLink" href= "https://tutorialspoint.com/"> Example Link </a> <button onclick="checkAttributes()"> Check Attributes </button> <p id="result"></p> <script> function checkAttributes() { const linkElement = document.getElementById ('myLink'); document.getElementById('result').textContent = "The link has attributes."; } </script> </body> </html>
支持的浏览器
方法 | |||||
---|---|---|---|---|---|
hasAttributes() | 是 | 是 | 是 | 是 | 是 |
html_dom_element_reference.htm
广告