最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - 'innerHTML': object is null or undefined - Stack Overflow

programmeradmin1浏览0评论

I have the following:

<div id="valueboxes" style="overflow-x:hidden;overflow-y:scroll;width:100%;height:200px">

However, every time I use the following:

document.getElementById("valueboxes").innerHTML = html;

I get this error:

'innerHTML': object is null or undefined

Am I doing something wrong?

The html is a table var being appended too by javascript in a for loop using +=.

I have the following:

<div id="valueboxes" style="overflow-x:hidden;overflow-y:scroll;width:100%;height:200px">

However, every time I use the following:

document.getElementById("valueboxes").innerHTML = html;

I get this error:

'innerHTML': object is null or undefined

Am I doing something wrong?

The html is a table var being appended too by javascript in a for loop using +=.

Share Improve this question edited Jun 27, 2012 at 18:39 Chris Laplante 29.7k18 gold badges109 silver badges137 bronze badges asked Jun 27, 2012 at 18:32 Amanada SmithAmanada Smith 1,9819 gold badges29 silver badges42 bronze badges 4
  • 5 Where is this code executing? It's likely that the DOM isn't ready for manipulation. – Chris Laplante Commented Jun 27, 2012 at 18:32
  • There is no HTML in the code you included in this question. Please show the HTML inside the "valueboxes" div so we can help you. – Lowkase Commented Jun 27, 2012 at 18:35
  • 1 @AmandaSmith: If you have a lot of other DOM manipulation going on, you might want to check out jQuery. That way, you can simply use $(function(){ /* Your DOM code here * /}); It will simplify a bunch of other things too. – Chris Laplante Commented Jun 27, 2012 at 18:37
  • 2 DomReady event occurs before window.onload, you'd better use jQuery – varela Commented Jun 27, 2012 at 18:38
Add a ment  | 

1 Answer 1

Reset to default 9

That's because you are executing your code before DOM is fully loaded.

This should work:

window.onload = function() {
  document.getElementById('valueboxes').innerHTML = html;
};

Or you can simply put your javascript code just before </body> tag with no need to use onload there.

发布评论

评论列表(0)

  1. 暂无评论