您好,登錄后才能下訂單哦!
Javascript中怎么動態創建DIV,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
Javascript動態創建DIV
這是原來的CSS樣式
.item{float:left;overflow:hidden;margin-left:8px; margin-top:10px;width:320px;height:250px; background-repeat:no-repeat; background-image:url(../images/bgred.jpg)} .curve{position:relative;width:320px;height:250px; z-index:1;left:75px;top:-40px;}
動態創建DIV代碼如下:
for(j=0;j*8<str.length;j++) { varmyDIV=window.frames["displayFrame"] .document.createElement("DIV"); myDIV.setAttribute("id","itemDIV"+j); myDIV.style.styleFloat="left"; myDIV.style.overflow="hidden"; myDIV.style.marginLeft="8px"; myDIV.style.marginTop="10px"; myDIV.style.width="320px"; myDIV.style.height="250px"; myDIV.style.backgroundRepeat="no-repeat"; myDIV.style.backgroundImage="url(image/bgred.jpg)" window.frames["displayFrame"].document .body.appendChild(myDIV); varcurveDIV=window.frames["displayFrame"] .document.createElement("DIV"); curveDIV.setAttribute("id","curveDIV"+j); curveDIV.style.position="relative"; curveDIV.style.zIndex=1; curveDIV.style.left="75px"; curveDIV.style.top="-40px"; curveDIV.style.width="320px"; curveDIV.style.height="250px"; window.frames["displayFrame"].document .getElementById("DIVitem"+j).appendChild(curveDIV); }
把DIV元素增加到HTML里面。
也可在HTML里面定義一個SPAN
window.frames["displayFrame"].document .getElementById("spanId").appendChild(myDIV); window.frames["displayFrame"].document .body.appendChild(myDIV);
IE和Firefox都支持.
◆另外需要注意的是這個CSS元素
浮動效果:float:left
在IE下代碼為:myDIV.style.styleFloat="left";
在Firefox代碼為:myDIV.style.cssFloat="left";
其他的諸如這種元素:
在CSS編寫中一般是:margin-left:8px,而在動態增加需要去掉-:myDIV.style.marginLeft="8px"。
看完上述內容,你們掌握Javascript中怎么動態創建DIV的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。