在我的CSS我有一個div
功能,增加了一類特殊的一個div
div.videl
{
width: 80%;
margin: 0 auto;
background-color: #39275b;
color: white;
padding: 5px;
}
,然後一個功能的特定類添加該類div
S:
this.addVideo = function()
{
var newVidElement = document.createElement("div");
newVidElement.class = "videl";
newVidElement.innerHTML = "<p>(" + ++this.numVids + ") <textarea class='vidtxt'></textarea></p>"
document.getElementById("vidplaydiv").appendChild(newVidElement);
}
然而,出於某種原因,該功能在我測試時未正確應用CSS屬性。看到這個頁面http://jaminweb.com/YoutubePlaylist.html並點擊Add Another Video按鈕。任何想法我做錯了什麼?
我懷疑純dom元素沒有任何'class'屬性,它應該是'className',請注意HTML中的屬性和DOM中的屬性之間並不總是對應的。 –