diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/globaleventhandlers/onmouseover/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/api/globaleventhandlers/onmouseover/index.html')
-rw-r--r-- | files/zh-cn/web/api/globaleventhandlers/onmouseover/index.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/globaleventhandlers/onmouseover/index.html b/files/zh-cn/web/api/globaleventhandlers/onmouseover/index.html new file mode 100644 index 0000000000..ed43e31a8a --- /dev/null +++ b/files/zh-cn/web/api/globaleventhandlers/onmouseover/index.html @@ -0,0 +1,66 @@ +--- +title: GlobalEventHandlers.onmouseover +slug: Web/API/GlobalEventHandlers/onmouseover +translation_of: Web/API/GlobalEventHandlers/onmouseover +--- +<div>{{ ApiRef("HTML DOM") }}</div> + +<h3 id="概述">概述</h3> + +<p><strong>onmouseover</strong>属性用来获取或设置当前元素的mouseover事件的事件处理函数.</p> + +<h3 id="语法">语法</h3> + +<pre class="eval">element.onmouseover = <em>event handling code</em> +</pre> + +<h3 class="editable" id="例子"><span>例子</span></h3> + +<pre class="brush: html"><!doctype html> +<html> +<head> +<title>onmouseover/onmouseout event example</title> +<script type="text/javascript"> + function initElement() + { + var p = document.getElementById("foo"); + + p.onmouseover = showMouseOver; + p.onmouseout = showMouseOut; + }; + + function showMouseOver() + { + var notice = document.getElementById("notice"); + notice.innerHTML = '检测到鼠标移进'; + } + + function showMouseOut() + { + var notice = document.getElementById("notice"); + notice.innerHTML = '检测到鼠标移出'; + } + + +</script> +<style type="text/css"> + #foo { + border: solid blue 2px; + } +</style> +</head> +<body onload="initElement()";> + <span id="foo">移动鼠标,在该元素上移进移出</span> + <div id="notice"></div> +</body> +</html> </pre> + +<h3 id="备注">备注</h3> + +<p>当鼠标移动到一个元素上时,会在这个元素上触发mouseover事件.</p> + +<h3 id="规范">规范</h3> + +<p>DOM Level 0 不属于任何规范.</p> + +<p>{{ languages( { "pl": "pl/DOM/element.onmouseover", "fr": "fr/DOM/element.onmouseover" , "en": "en/DOM/element.onmouseover" } ) }}</p> |