觸發(fā) onmouseout
屬性事件當(dāng)鼠標(biāo)指針移出元素時。
沒有。
<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>
更多建議: