gpt4 book ai didi

javascript - 使用 JavaScript 从 anchor 标记中提取 anchor 文本

转载 作者:行者123 更新时间:2023-11-28 08:50:22 26 4
gpt4 key购买 nike

我最近发布了有关使用 javascript 从 anchor 标记中提取 anchor 文本的问题。我得到了一个答案。

但是,该代码可以在 IE 和 Chrome 中运行,但不能在 Firefox 中运行。

function extractText(){
var docId = "10";
var cId = "13";
var dName = "ASPIRIN/COUMARIN";
var anchText = "<a target=\"_blank\" href=hello?docId=" + docId + "&cId=" + cId +">" + dName +"</a>";
var str1 = document.createElement('str1');

str1.innerHTML = anchText;
var anc = str1.innerText;

alert(anc);

return anc;
}

我认为 innerTextinnerHTML 或两者的属性在 Firefox 中不起作用。您能否帮忙说明一下上述代码在 IE、Chrome、Firefox 等浏览器中的工作情况吗?

最佳答案

textContent Firefox 中使用的 W3C 标准是 innerText

的替代方案

关于javascript - 使用 JavaScript 从 anchor 标记中提取 anchor 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19227127/

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