本文實(shí)例為大家分享了js實(shí)現(xiàn)隔行變色的具體代碼,供大家參考,具體內(nèi)容如下
成都創(chuàng)新互聯(lián)是工信部頒發(fā)資質(zhì)IDC服務(wù)器商,為用戶提供優(yōu)質(zhì)的成都溫江機(jī)房服務(wù)
<script type="text/javascript"> function createTable(){ //創(chuàng)建表格 var table = document.createElement("table"); //設(shè)置表格的行數(shù) for(var i=0;i<4;i++){ var tr = document.createElement("tr"); //設(shè)置表格的列數(shù) for( var j=0;j<5;j++){ var td = document.createElement("td"); tr.appendChild(td); //添加文本 var txt = document.createTextNode("wkk"); td.appendChild(txt); } //判斷顏色的變換 if(i%2==0){ //添加屬性(第一種) tr.style.backgroundColor = "#f0f"; } else { tr.style.backgroundColor = "#ff0"; } table.appendChild(tr); } //添加屬性(第二種) table.setAttribute("border","1px"); //table.style.border = "solid 1px red"; table.setAttribute("width","200px"); table.setAttribute("height","100px"); //添加到body中 document.body.appendChild(table); }//create table over createTable(); </script>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
網(wǎng)頁標(biāo)題:純js實(shí)現(xiàn)隔行變色效果
分享網(wǎng)址:http://jinyejixie.com/article36/gdpppg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號、商城網(wǎng)站、面包屑導(dǎo)航、ChatGPT、品牌網(wǎng)站制作、用戶體驗(yàn)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)