这篇文章主要介绍了js实现的简单radio背景颜色选择器代码,利用鼠标事件及页面元素动态操作实现页面背景颜色的改变功能,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了js实现的简单radio背景颜色选择器。分享给大家供大家参考。具体如下:
这里演示的js实现radio网页背景颜色选择器,只需点击对应颜色的radio单选框,就可以改变网页的背景颜色,简单方便,实用的javaScript网页特效。
运行效果如下图所示:
在线演示地址如下:
具体代码如下:
<!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"> <font color="silver">click here</font><input type="radio"><BR> <font color="lightslategray">click here</font><input type="radio"><BR> <font color="azure">click here</font><input type="radio"><BR> <font color="lightgreen">click here</font><input type="radio"><BR> <font color="lightblue">click here</font><input type="radio"><BR> <font color="white">click here</font><input type="radio"><BR> </form> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。
您可能感兴趣的文章: