o=document.getElementsByTagName('table');
for(i=0; i<o[0].rows.length; i++){
td=o[0].rows[i].cells[3];
if(td.textContent < '2018-12-20 19:05:08'){
td.style.backgroundColor="red";
}else{
td.style.backgroundColor="green";
}
}
"green"
利用纯js实现判断变色功能改进版
最新推荐文章于 2023-05-25 00:46:22 发布