gpt4 book ai didi

javascript - 在 GWT 元素上使用 JS appendChild

转载 作者:行者123 更新时间:2023-12-03 12:40:06 25 4
gpt4 key购买 nike

我遇到了一个令人惊讶的问题:我创建了一种方法来强调它:

protected native String jsAppendChild(Element item)/*-{
var div = $doc.createElement("div");
div.innerHTML = "hey do you see me";
item.appendChild(div);
}-*/;

在 GWT 元素上调用此方法不会将该元素添加到 DOM!?

有什么解释吗?

最佳答案

问题是一个简单的拼写错误:

div.innerHtml = "hey do you see me";

应该是

div.innerHTML = "hey do you see me";

参见here

关于javascript - 在 GWT 元素上使用 JS appendChild,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23562744/

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