js怎样获得table样式
答案:3 悬赏:80 手机版
解决时间 2021-02-23 01:57
- 提问者网友:一抹荒凉废墟
- 2021-02-22 06:32
js怎样获得table样式
最佳答案
- 五星知识达人网友:街头电车
- 2021-02-22 07:33
document.getElementsByTagName("table")[0].style
全部回答
- 1楼网友:行路难
- 2021-02-22 09:16
<br><br><br>创建和插入例子,按需自改<br> function createTable(id,arr){ var table = document.createElement('table'); table.setAttribute("id",id); table.setAttribute("className","TableLine");//设定样式 table.setAttribute("width",'98%'); table.setAttribute("cellpadding",'3'); table.setAttribute("cellspacing",'0'); var row = table.insertRow(); row.style.setAttribute("backgroundColor","#e0e0e0"); for (var i = 0; i < arr.length; i++) { var col = row.insertCell(); if(i==0){ col.setAttribute("width",'3%'); } col.setAttribute("className","border:1px solid #9BC2E0;"); col.setAttribute("align","center"); col.style.fontSize="13px"; col.style.fontWeight="Bold";; //var style = document.createAttribute("styles"); //style.nodeValue = "font-size:large"; //col.setAttributeNode(style); col.innerHTML = arr[i]; } //alert(table.outerHTML); return table; } <br><br> function addRow(table,id,arr){ var row = table.insertRow(); row.setAttribute("id",id); row.onclick=function (){}; for(var i=0;i
- 2楼网友:骨子里都是戏
- 2021-02-22 07:53
$('#table1').css({
'align' : 'center'
});//jquery的解决方式很完美的,table那里设置相应的id
等效于js中的document.getelementbyid('table1').style.align="center";
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯