一個div元素內部的div元素,我想一個已經存在的div
內創建div
的一個非常基本的例子。創建在JavaScript
並不奏效,當我使用:
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);
}
您可能想試試螢火蟲 - 讓它更容易在您的代碼中發現拼寫錯誤。 –