实例 当鼠标指针移动到图像上时执行一段 JavaScript:登录后复制浏览器支持IEFirefoxChromeSafariOpera所有主流浏览器都支持 onmouseover 属性。定义和用法onmouseover 属性在鼠标指针移动到元素上时触发。注释:onmouseover 属性不适用以下元素:、、、、、、、、、<style> 或 <title>。</p><p style="margin: 0px; padding: 0px; border: 0px; font-size: 18px; color: rgb(63, 63, 63); font-family: 微软雅黑; white-space: normal; background-color: rgb(253, 252, 248);">HTML 4.01 与 HTML5 之间的差异</p><p>无。</p><p style="margin: 0px; padding: 0px; border: 0px; font-size: 18px; color: rgb(63, 63, 63); font-family: 微软雅黑; white-space: normal; background-color: rgb(253, 252, 248);">语法</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><element onmouseover="script"></pre><div class="contentsignin">登录后复制</div></div><p style="margin: 25px 0px 0px; padding: 0px; border: 0px; font-size: 16px; color: rgb(0, 0, 0); font-family: PingFangSC-Regular, Verdana, Arial, 微软雅黑, 宋体; white-space: normal; background-color: rgb(253, 252, 248);">属性值</p><table><tbody><tr class="firstRow"><td width="108" valign="top" style="word-break: break-all;">值</td><td width="1001" valign="top" style="word-break: break-all;">描述</td></tr><tr><td width="108" valign="top" style="word-break: break-all;">script</td><td width="1001" valign="top" style="word-break: break-all;">onmouseover 发生时运行的脚本。</td></tr></tbody></table><p style="box-sizing: border-box; font-family: 微软雅黑; font-weight: 100; line-height: 1.1; color: rgb(69, 69, 69); margin: 0px; font-size: 14px; padding: 0px; white-space: normal; border: 0px; background-color: rgb(249, 249, 249);">实例</p><p>当鼠标指针移动到图像上时执行一段 JavaScript(使图像放大):<br/></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false;"><!DOCTYPE html> <html> <head> <script> function bigImg(x) { x.style.height="180px"; x.style.width="180px"; } function normalImg(x) { x.style.height="128px"; x.style.width="128px"; } 函数 bigImg() 在鼠标指针移动到图像上时触发。此函数放大图像。 函数 normalImg() 在鼠标指针移出图像时触发。此函数把图像的高度和宽度重置为正常尺寸。 登录后复制