-6

我正在通过引用此链接进行树视图

我在萤火虫中收到此错误

**Non-standard document.all property was used.
Use W3C standard document.getElementById() instead.

return document.all[id].style[property];** 

如何document.getElementById()在那个地方使用

4

1 回答 1

0

此错误消息意味着您访问了 variable 的属性“all” document,但比方说,该属性已被弃用,因此不应使用。控制台说您应该使用方法“getElementById”,它返回具有给定 id 的元素,然后您可以继续。

如果您知道 id,要通过 id 访问元素,例如,您可以声明一个变量并将结果分配给它getElementById(会有问题style[property]):

var myElement=document.getElementById("id");
return myElement.property; // height for example

要不就

return document.getElementById("id").property;  // height for example
于 2013-03-10T18:09:45.070 回答