Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.7k views
in Technique[技术] by (71.8m points)

js怎样设置动态的table的tr的css样式?

//创建table标签
table=document.createElement('table');
table.id='selector';
table.style.width='100%';
table.style.backgroundColor = '#fff';
table.style.border = '1px solid #ccc';
var tr = table.();
tr.style.border = 0;

var tr = table.(); //怎么获得这个tr对象?
tr.style.border = 0;


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

就跟创建table一样的

const tr=document.createElement('tr');
tr.style.border = 0;
table.appendChild(tr)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...