gpt4 book ai didi

javascript - 使用 javascript 将 HTML 代码添加到 div 中

转载 作者:行者123 更新时间:2023-11-28 13:44:24 24 4
gpt4 key购买 nike

我有一个 div:

<div id="bottom">
</div>

现在我想在那里创建表,其中将放置 Js 数组中的内容。我试过这个:

document.getElementById('bottom').innerHTML("Text");

但它不起作用:/

Uncaught TypeError: Property 'innerHTML' of object # is not a function

最佳答案

innerHTML 是一个属性,没有方法。像这样使用它:

document.getElementById('bottom').innerHTML = "Text";

更多 information at MDN .

关于javascript - 使用 javascript 将 HTML 代码添加到 div 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15461929/

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