我正在尝试一个非常基本的示例来创建一个div
已经存在的div
.
当我使用时,它似乎不起作用:
document.getElementbyId('lc').appendChild(element)
但是当我这样做时效果很好:
document.body.appendChild(element)
我需要添加windows.onload
功能吗?虽然即使那样也行不通!
HTML 代码:
<body>
<input id="filter" type="text" placeholder="Enter your filter text here.." onkeyup = "test()" />
<div id="lc">
</div>
</body>
JS代码:
function test()
{
var element = document.createElement("div");
element.appendChild(document.createTextNode('The man who mistook his wife for a hat'));
document.getElementbyId('lc').appendChild(element);
//document.body.appendChild(element);
}