gpt4 book ai didi

javascript - 如何使用javascript通过其div id设置图像alt属性

转载 作者:行者123 更新时间:2023-11-28 04:19:03 34 4
gpt4 key购买 nike

我正在尝试通过 JavaScript 设置图像 alt 属性。问题是图像本身没有 id,我只有它的 div Id。

<div id="logo">
<a href="http://yourwebsite.com">
<img alt="nkki" src="http://crankit.com.au/~thstarse/wp-content/themes/bigbangwp/image/logo.png">
</img>
</a>

我正在尝试什么,但是我没有运气。谁能帮我处理一下我的代码?

$(this).children('img').setAttribute('alt', 'new alt');

这道题的答案是

document.querySelector("#logo img").setAttribute('alt', 'new alt');

最佳答案

您也可以使用纯 javascript 来完成。

document.querySelector("#logo img").setAttribute('alt', 'new alt');

关于javascript - 如何使用javascript通过其div id设置图像alt属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29203899/

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