當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML onmousedown屬性用法及代碼示例


當在元素上按下鼠標按鈕並且事件發生的順序與onmousedown事件有關(針對左/鼠標按鈕)時,將觸發此onmousedown屬性

  • onmousedown
  • onmouseup
  • onclick

用法:

<element onmousedown="script">

屬性值:所有HTML元素都支持它。腳本事件在onmousedown屬性調用時運行。

Example:

<!DOCTYPE html> 
<!DOCTYPE html> 
<html> 
  
<head> 
    <title>onmousedown attribute</title> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2>onmousedown A ttribute</h2> 
    <p id="gfg" onmousedown="mouseDown()"
                        onmouseup="Geeks()"> 
        <b>GeeksforGeeks:</b> A computer science portal  
        for Geeks. It is best website for learning<br> 
        computer science. 
    </p> 
    <script> 
        function Geeks() { 
            document.getElementById("gfg").style.color = "green"; 
        } 
  
        function mouseDown() { 
            document.getElementById("gfg").style.color = "red"; 
        } 
    </script> 
</body> 
  
</html>                          

輸出:

支持的瀏覽器:下麵列出了onmousedown屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari




相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | onmousedown Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。