如何阅读文字“ 88”从以下HTML使用JavaScript
如何使用JavaScript从以下HTML读取文本“ LE 88”。文本LE不是恒定的,它一直在变化。它既不包含ID的名称,也不包含班级名称。
<body>
<div id="Record">
<div>
<div>Grade A </div>
</div>
<div>19-04-2022
</div>
<div>
<div>Subject H1
</div>
<div>
<div>LE 88
</div>
</div>
</div>
<div>
</div>
</div>
</body>
How to read text "LE 88" from the following HTML using Javascript. the text LE is not constant, it keeps on changing. It neither contains ID's, nor class names.
<body>
<div id="Record">
<div>
<div>Grade A </div>
</div>
<div>19-04-2022
</div>
<div>
<div>Subject H1
</div>
<div>
<div>LE 88
</div>
</div>
</div>
<div>
</div>
</div>
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以迭代DOM
div
并检查孩子。在这种情况下,带有文本的div
没有任何孩子。因此,请使用儿童
并检查textContent
。如果找到匹配文本,请执行所需的操作You can iterate the dom
div
and check for the children. In this case thediv
with text does not have any child. So usechildren
and check for thetextContent
. If the matching text is found do the required operation