<html>
<head>
<script>
function bigImg(x){
x.style.height="150px";
x.style.width="150px";
}
function normalImg(x){
x.style.height="120px";
x.style.width="120px";
}
</script>
</head>
<body>
<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="/i/smiley.gif" alt="Smiley" width="120" height="120">
<p>函数 bigImg() 在鼠标指针移动到笑脸图片是触发。</p>
<p>函数 normalImg() 在鼠标指针移出笑脸图片是触发.</p>
</body>
</html>