触发 onmousedown
属性事件当按下元素上的鼠标按钮时。
与鼠标按钮的onmousedown事件相关的事件顺序:
没有。
<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>