1. 程式人生 > >利用純js實現判斷變色功能改進版

利用純js實現判斷變色功能改進版

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"