当前位置:  开发笔记 > 编程语言 > 正文

I am getting "cannot set property 'innerHTML' of null

如何解决《Iamgetting"cannotsetproperty'innerHTML'ofnull》经验,为你挑选了1个好方法。

我收到此错误。我正在尝试输出html文档上数组中存在的名称,但是我无法做到这一点。我尝试将脚本标签放置在主体下方,但仍然无法正常工作。




    
    
    Document


    

Callback Function

// get a reference to the 'ul'
const ul = document.querySelector('.people');

//I am trying to read the people on to the html code
const people = ['mario', 'luigi', 'ryu', 'shaun', 'chun-li'];
let html = ` `;
people.forEach(function(person){
  html += `
  • >${person}
  • `; }); console.log("hellow"); ul.innerHTML = html;

    小智.. 6

    您的HTML中有错误。尝试这个:

    在班级和“人民”之间缺少一个=号。



    1> 小智..:

    您的HTML中有错误。尝试这个:

    在班级和“人民”之间缺少一个=号。

    推荐阅读
    mobiledu2402851203
    这个屌丝很懒,什么也没留下!
    DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
    Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有