<!DOCTYPE html>charset="utf-8"W3Cschool教程(w3cschool.cn)onmouseenter="bigImg(this)" onmouseleave="normalImg(this)" border="0" src="smiley.gif" alt="Smiley" width="32" height="32"bigImg() 函数在用户将鼠标指针移动到该图像时触发。normalImg() 函数在用户将鼠标指针移出图像时触发。function bigImg(x) {x.style.height = "64px";x.style.width = "64px";}function normalImg(x) {x.style.height = "32px";x.style.width = "32px";}