请帮帮我?
document.getElementsById不是函数 在window.onload
window.onload = function () {
temp = document.getElementsById("temperature");
loc = document.getElementsById("location");
icon = document.getElementsById("icon");
humidity = document.getElementsById("humidity");
wind = document.getElementsById("wind");
direction = document.getElementsById("direction");
}
答案 0 :(得分:-2)
您正在寻找的原生功能称为document.getElementById
https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById
通过单个ID获取多个元素是没有意义的,因为ID在DOM树中应该是唯一的。