Home > Software engineering >  JQuery selector
JQuery selector

Time:09-16

JQuery set age column of table, if more than twenty years, and he set the font color to blue statement how to write?

CodePudding user response:

 $(td. XXX). Each (
The function () {
If (parseInt (this) the innerText) trim ()) & gt; 20)
This. Style. Color="blue";
}
);
  • Related