日期:2014-05-17  浏览次数:20732 次

鼠标移动改变CSS样式
<style type="text/css">
.changeColor {
	font-size: 14px;
	color:#FFF;
	background-color: #09C;
	text-decoration: underline;
}
.original {
	font-size: 14px;
	color: #09C;
	text-decoration: underline;
}
</style>
<script language="javascript">
		function changeBlue(){
			document.getElementById('change').className="original";
		}
		function changeRed(){
			document.getElementById('change').className="changeColor";
		}
</script>
</head>
<body>
<span class="original" id="change" onmouseover="changeRed()" onmouseout="changeBlue()">变色龙
</span>
</body>