<!DOCTYPE html>function bigImg(x){x.style.height="64px";x.style.width="64px";}function normalImg(x){x.style.height="32px";x.style.width="32px";}onmousemove="bigImg(this)" onmouseout="normalImg(this)" border="0" src="/statics/images/course/smiley.gif" alt="Smiley" width="32" height="32"当用户将鼠标移动到图片时触发 bigImg() 函数。该函数使图片变大。当用户将鼠标移开时触发normalImg() 函数。该函数使图片变回原来大写。