<html>
<head>
<style>
.one{background: red}
</style>
</head>
<body>
<div>20</div>
<div>30</div>
<script>
divs=document.querySelectorAll("div")
for(var i=0; i<divs.length; i++) if(divs[i].innerHTML==="20") divs[i].setAttribute("class", "one")
</script>
</body>
</html>