本文實例講述了js實現的簡單radio背景顏色選擇器。分享給大家供大家參考。具體如下:
這裡演示的js實現radio網頁背景顏色選擇器,只需點擊對應顏色的radio單選框,就可以改變網頁的背景顏色,簡單方便,實用的javaScript網頁特效。
運行效果如下圖所示:
在線演示地址如下:
http://demo.jb51.net/js/2015/js-radio-cha-bgcolor-codes/
具體代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>radio顏色選擇器</title> <body> <FORM METHOD="POST" NAME="bgcolor"> <font color="silver">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='silver'"><BR> <font color="lightslategray">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='lightslategray'"><BR> <font color="azure">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='azure'"><BR> <font color="lightgreen">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='lightgreen'"><BR> <font color="lightblue">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='lightblue'"><BR> <font color="white">click here</font><input type="radio" name="bgcolor" ONCLICK="document.bgColor='white'"><BR> </form> </body> </html>
希望本文所述對大家的javascript程序設計有所幫助。