gpt4 book ai didi

javascript - 如何提取 html 属性中的 html

内容?

转载 作者:行者123 更新时间:2023-11-27 23:15:09 25 4
gpt4 key购买 nike

我想提取<p> html 属性中的内容,<meta content='**I want to extract here**' name='description'/> .怎样才能完成工作。我正在使用 blogger.com,所以在 blogger.com 中我想提取 <p>元标记中的内容。请帮我。我尝试了很多但都失败了。

最佳答案

在文档加载时运行此 JavaScript。

// JavaScript
var p = document.getElementsByTagName("p")[0];
console.log(p.textContent);
var metaTag = document.querySelector('meta[name="description"]');
console.log(metaTag);
metaTag.setAttribute("content",p.textContent);
console.log(metaTag);
<!-- Sample HTML -->
<meta content='**I want to extract here**' name='description'/>
<p>some text</p>

关于javascript - 如何提取 html 属性中的 html <p> 内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43566665/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com