HTML事件屬性onmouseover

2018-01-05 13:58 更新

HTML事件屬性onmouseover


觸發(fā) onmouseover 屬性事件當(dāng)鼠標(biāo)點(diǎn)在元素上時(shí)。

HTML5中的新功能

沒有。

句法

<element onmouseover="script or Javascript function name">

支持的標(biāo)簽

所有HTML元素,EXCEPT:

<base>, 
<bdo>, 
<br>, 
<head>, 
<html>, 
<iframe>, 
<meta>, 
<param>, 
<script>, 
<style>, 
<title>


瀏覽器兼容性

onmouseover Yes Yes Yes Yes Yes

例子

<!DOCTYPE html>
<html>
<body>

<p id="p1" onmouseover="onmouseOver()" onmouseup="mouseUp()">
Click the text! 
</p>

<script>
function onmouseOver() {
    console.log("onmouseOver");
}

function mouseUp() {
    console.log("up");
}
</script>

</body>
</html>

Click to view the demo



以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)