我正在嘗試此代碼,但它不工作。請幫助。在這個我只想創建一個div塊並改變它的屬性?通過javascript創建div框
<html>
<head>
<script >
function create()
{
l=document.createElement('div');
l.id='10';
l.style.position='absolute';
l.style.top='100px';
l.style.left='200px';
l.style.height='100px';
l.style.width='100px';
l.style.backgroundColor='yellow';
l.style.zIndex='100';
}
</script>
</head>
<body>
<input type="submit" name="cssandcreate" id="cssandcreate" value="css" onclick="create()"/>
</body>
</html>
「它不工作」 並不算是錯誤描述。發生了什麼呢? –
@JanDvorak沒有任何事情發生,OP顯然是試圖添加一個對象到DOM。 – Jonathan
@Jonathan我明白了,但提問者應該告訴我們。我們不應該被要求猜測。也許我們除了邏輯錯誤之外還錯過了一個錯字? –