1. 程式人生 > >css控制,滑鼠移動到DIV層上,更換背景色顏色,相容IE6,IE7,FF

css控制,滑鼠移動到DIV層上,更換背景色顏色,相容IE6,IE7,FF

<!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=gb2312" />
<title>無標題文件</title>
<style type="text/css">
.rm {height: 110px;margin: 0px;padding: 3px;event:expression(onmouseover = function(){this.style.backgroundColor = '#E9F5FF';},onmouseout = function(){this.style.backgroundColor = '#ffffff';})}
</style>
</head>
<body>
<div class="rm"></div>
</body>
</html>