对下述结构代码,文档中只有<script>和<html>,会提示appendChild未定义,但是加上window.onload = function().....就可以正常执行,
如何解释?
谢谢
<script>var tester = document.createElement('div'); tester.style.display = 'inline-block'; tester.style.fontSize = '30px'; tester.innerHTML = 'Segment';document.body.appendChild(tester);console.log(tester.offsetWidth) // 120</script>
慕婉清6462132
相关分类