gpt4 book ai didi

Javascript:如何更改子元素的属性?

转载 作者:行者123 更新时间:2023-11-28 16:37:39 25 4
gpt4 key购买 nike

我有这个隐藏链接,需要它用于其他目的:

<span id="notitle" style="display: none;">
<a href="...Foo" title="Foo" style="..."></a>
</span>

链接是动态生成的,并自动包含标题属性。但我想删除标题属性,因为当用户复制粘贴周围的文本时会复制该值。

我想到了使用javascript。这是我到目前为止所得到的:

<html>
<head>
<script type="text/javascript">
function notitle() {
var mylist=document.getElementById("notitle")
var listitems= mylist.getElementsByTagName("a")
for (i=0; i<listitems.length; i++) {
listitems.setAttribute("title", "");
}
}
</script>
</head>

<body onLoad="notitle()">

<p>Before hidden link:
<span id="notitle" style="display: none;">
<a href="#Foo" title="Foo">This Link should have no title attribute</a>
</span>
After hidden link.</p>
</body>
</html>

但是不起作用。我猜这是关于 listitems.setAttribute("title", "");任何想法?干杯:)

最佳答案

listitems 是集合,因此您的代码可能会引发错误。

无论如何,你想要:

listitems[i].setAttribute("title", "");

关于Javascript:如何更改子元素的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3083689/

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