<html>
<head>
<style type="text/css">
.szdbi1 {
width:275px;
height:150px;
color: red;
border: 1px solid red;
}
.szdbi{
width:275px;
height:150px;
color: red;
border: 1px solid black;
}
</style>
<script language="javascript">
function hc(obj,cssname) {
obj.className = cssname; //obj為對象名,cssname為對象的class名
}
</script>
</head>
<body>
<div onMouseOver="hc(this,'szdbi1');" onMouseOut="hc(this,'szdbi');" class="szdbi">
<img src="http://www.ebhbzc.cn/skin/default/images/LINK_logo.png" />
<p><a href="http://www.ebhbzc.cn">深藍(lán)互聯(lián)測試</a></p>
</div>
</body>
</html>