gpt4 book ai didi

javascript - .innerHTML 未显示

转载 作者:行者123 更新时间:2023-11-28 12:20:32 26 4
gpt4 key购买 nike

我搜索了许多相关的堆栈溢出问题,但无法理解为什么我的 .innerHTML 不起作用。我创建了一个 javascript 文件,虽然 alert 似乎工作正常,但 .innerHTML 却不然。

function expanddevice(){
alert('huh?');
document.getElementbyId("expandservices").innerHTML = "we have great service for iPads";
}
<div class="imgDescription">
<span><a href="#socialmedia">Devices</a></span>
<div class="imgcontainer">
<img onClick="expanddevice()" src="pics/device.png">
</div>
</div>
<p id="expandservices">Text should appear here:</p>

最佳答案

您有一个拼写错误。

尝试 document.getElementById(),它区分大小写。

document.getElementById("expandservices").innerHTML = "we have great service for iPads";

关于javascript - .innerHTML 未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39384564/

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