這篇文章主要介紹了關於PHP二維數組根據某一字段去重或統計的小技巧,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
這是原來的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;}
動態建立p程式碼如下:
for(j = 0;j*8 <str.length; j++) { var myp = window.frames["displayFrame"].document.createElement("p"); myp.setAttribute("id","itemp"+j); myp.style.styleFloat="left"; myp.style.overflow="hidden"; myp.style.marginLeft="8px"; myp.style.marginTop="10px"; myp.style.width="320px"; myp.style.height="250px"; myp.style.backgroundRepeat="no-repeat"; myp.style.backgroundImage="url(image/bgred.jpg)" window.frames["displayFrame"].document.body.appendChild(myp); var curvep =window.frames["displayFrame"].document.createElement("p"); curvep.setAttribute("id","curvep"+j); curvep.style.position="relative"; curvep.style.zIndex=1; curvep.style.left="75px"; curvep.style.top="-40px"; curvep.style.width="320px"; curvep.style.height="250px"; window.frames["displayFrame"].document.getElementById("pitem"+j).appendChild(curvep); }
把p元素增加到HTML裡面.
也可以在HTML裡面定義一個SPAN
window.frames["displayFrame"].document.getElementById("spanId").appendChild(myp); window.frames["displayFrame"].document.body.appendChild(myp);
IE和Firefox都支援.
另外要注意的是這個CSS元素
浮動效果:float:left
在IE下程式碼為:myp.style. styleFloat="left";
在Firefox程式碼為: myp.style.cssFloat="left";
其他的諸如這種元素:
在CSS編寫中一般是:margin-left:8px
而在動態增加需要去掉- :myp.style.marginLeft="8px";
關於大小寫敏感問題沒有仔細研究.
#
以上是如何利用Js動態建立div的詳細內容。更多資訊請關注PHP中文網其他相關文章!