前端技术

当前位置:首页 > 前端技术 >

js实现选中复选框文字变色的方法

时间:2015-08-14        阅读:次        QQ群:182913345

本文实例讲述了js实现选中复选框文字变色的方法,分享给大家供大家参考。具体如下:
 
这里实现选中复选框时,文字加上一个背景色,变通一下,还是很有用的。运行效果如下图所示:
 
js实现选中复选框文字变色的方法

具体代码如下:

<html>
	<head>
		<title>选中复选框文字变色</title>
		<style>
			.checkbox{background-Color:e-xpression(this.checked?'yellow':'buttonface');}
		</style>
		<script>
			function chaCloor(field){
				var pig = field.checked;
				pig?field.nextSibling.style.backgroundColor=
				"skyblue":field.nextSibling.style.backgroundColor="white";
			}
		</script>
	</head>
	<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>

上一篇:js获取来路url和当前url地址

下一篇:javascript中 try catch用法详解

扫一扫,更多精彩内容推送

PHP技术分享

分享PHP技术,前端技术,数据库,SEO优化,服务器,网络安全等知识,是php程序员工作学习的好帮手!

Copyright © 2013-2015.PHP技术分享 www.php520.cn  版权所有  网站地图    PHP学习交流群

免责声明:网站内容收集于互联网,本网站不承担任何由于内容的合法性及健康性所引起的争议和法律责任。

欢迎大家对网站内容侵犯版权等不合法和不健康行为进行监督和举报。 沪ICP备15014499号-2