gpt4 book ai didi

javascript - getAttributeNode 中的 toUpperCase()

转载 作者:行者123 更新时间:2023-11-30 14:50:05 24 4
gpt4 key购买 nike

如何使 img src 变为 PIC_BULBOFF.GIF 可行?

<img class="dd" src="pic_bulboff.gif" >

<script>
var x = document.getElementsByClassName("dd")[0];
x.getAttributeNode("src").value = ///x.toUpperCase///;
</script>

最佳答案

使用setAttributegetAttribute 分别设置获取元素的属性值。

x.setAttribute("src", x.getAttribute( "src" ).toUpperCase() );

演示

var x = document.getElementsByClassName("dd")[0];
x.setAttribute("src", x.getAttribute( "src" ).toUpperCase() );
<img class="dd" src="pic_bulboff.gif" >

关于javascript - getAttributeNode 中的 toUpperCase(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48283720/

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