本文實例講述了js實作選取複選框文字變色的方法。分享給大家供大家參考。具體如下:
這裡實作選取複選框時,文字加上一個背景色,變通一下,還是很有用的。
運作效果如下圖:
線上示範網址如下:
http://demo.jb51.net/js/2015/js-checkbox-cha-font-color-codes/
具體程式碼如下:
<html> <head> <title>选中复选框文字变色</title> <style> .checkbox { background-Color:e-xpression(this.checked?'yellow':'buttonface'); } </style> </head> <script> function chaCloor(field){ var pig = field.checked; pig?field.nextSibling.style.backgroundColor="skyblue":field.nextSibling.style.backgroundColor="white"; } </script> <body> <table height=48 width=136> <tr> <td><input type="checkbox" onClick="chaCloor(this)"><span>网页特效</span></td> </tr> <tr> <td><input type="checkbox" onClick="chaCloor(this)"><span>源码下载</span></td> </tr> <tr> <td><input type="checkbox" onClick="chaCloor(this)"><span>编程软件</span></td> </tr> </table> </body> </html>
希望本文所述對大家的javascript程式設計有所幫助。