觸發(fā) onmousedown
屬性事件當(dāng)按下元素上的鼠標(biāo)按鈕時(shí)。
與鼠標(biāo)按鈕的onmousedown事件相關(guān)的事件順序:
沒有。
<element onmousedown="script or Javascript function name">
所有HTML元素,EXCEPT:
<base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, <title>
onmousedown |
Yes | Yes | Yes | Yes | Yes |
<!DOCTYPE html>
<html>
<body>
<p id="p1" onmousedown="mouseDown()" onmouseup="mouseUp()">
Click the text!
</p>
<script>
function mouseDown() {
console.log("down");
}
function mouseUp() {
console.log("up");
}
</script>
</body>
</html>
更多建議: