简单教程
提交运行
代码编辑器:
<script> function bigImg(x){ x.style.height="64px"; x.style.width="64px"; } function normalImg(x){ x.style.height="32px"; x.style.width="32px"; } </script> <img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="/static/i/img3.jpg" alt="Smiley" width="32" height="32"> <p>函数 bigImg() 在鼠标指针移动到笑脸图片是触发</p> <p>函数 normalImg() 在鼠标指针移出笑脸图片是触发</p>
运行结果: