HTML事件屬性onmouseout
HTML事件屬性onmouseout
觸發onmouseout
屬性事件當鼠標指針移出元素時。
HTML5中的新功能
沒有。
句法
<element onmouseout="script or Javascript function name">
支持的標簽
所有HTML元素,EXCEPT:
<base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, <title>
瀏覽器兼容性
onmouseout | Yes | Yes | Yes | Yes | Yes |
例子
<!DOCTYPE html>
<html>
<body>
<p id="p1" onmouseout="onmouseOut()" onmouseup="mouseUp()">
Click the text!
</p>
<script>
function onmouseOut() {
console.log("Out");
}
function mouseUp() {
console.log("up");
}
</script>
</body>
</html>
Click to view the demo