gpt4 book ai didi

javascript - 如何在javascript数组概念中添加html anchor 标记

转载 作者:行者123 更新时间:2023-12-03 00:18:08 25 4
gpt4 key购买 nike

var n = [
{ id: "unep",
title: "UNEP",
body: " The United Nations Environment Programme (UN Environment) is the leading global environmental authority that sets the global environmental agenda,",
img: "img/unep.png"
}

我试图在正文内容中插入 anchor 标记,但它似乎不起作用。如何插入 anchor 标记?

最佳答案

如果您想要仅文本输出,您可以使用 createElement 创建一个新的 HTML 元素,然后添加所需的属性,最后使用 .outerHTML< 输出新创建的标记的文本版本方法:

var n = {
id: "unep",
title: "UNEP",
body: "The United Nations Environment Programme … ",
img: "img/unep.png"
};

const linkTag = document.createElement('a');
linkTag.href = 'https://google.com';
linkTag.textContent = 'Link';

const linkTagAsText = linkTag.outerHTML;

n.body = n.body + linkTagAsText;

关于javascript - 如何在javascript数组概念中添加html anchor 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54448553/

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