Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

How to change table TD text color via Javascript?

I can do HTML/CSS:
<table><tr><td style="color:#f00;">text</td> and I get red text.

But I cannot do javascript: tbl.rows[row].cells[col].style.color = "#f00"; There is no color change.

What do I not understand? Thanks.

question from:https://stackoverflow.com/questions/66052312/how-to-change-table-td-text-color-via-javascript

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

1 Reply

0 votes
by (71.8m points)

In the HTML you're setting the style attribute of the td element to a string with value color:#f00;, so you'd have to do the same in javascript:

tbl.rows[row].cells[col].style = "color:#f00;";

This is because the style attribute is a string which must be valid css, not a javascript object with properties like color.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...