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


HTML oncopy事件用法及代碼示例


當用戶複製元素的內容時,將發生HTML DOM oncopy事件。它也適用於使用元素創建的圖像。它通常與type =“ text”一起使用。

注意:有三種複製元素內容的方法:

  1. 按CTRL + C
  2. 從瀏覽器的“編輯”菜單中選擇“Copy”
  3. 右鍵單擊以顯示上下文菜單,然後選擇“Copy”命令。

用法:


在HTML中:

<element oncopy="myScript">

在JavaScript中:

object.oncopy = function(){myScript};

在JavaScript中,使用addEventListener()方法:

object.addEventListener("copy", myScript);

例:使用HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML DOM oncopy event</title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green">GeeksforGeeks</h1> 
        <h2>HTML DOM oncopy event</h2> 
        <input type="text"
               oncopy="myFunction()"
               value="Copy the text"> 
  
        <p id="demo"></p> 
  
        <script> 
            function myFunction() { 
                document.getElementById("demo").innerHTML = "Done" 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:
之前:

後:

例:使用JavaScript

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML DOM oncopy event</title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green">GeeksforGeeks</h1> 
        <h2>HTML DOM oncopy event</h2> 
<input type="text" id="myInput" value="Copy the text"> 
  
<script> 
document.getElementById("myInput").oncopy = function() {GFGfun()}; 
  
function GFGfun() { 
  alert("Done"); 
} 
</script> 
  
</body> 
</html>

輸出:
之前:

後:

例:在JavaScript中,使用addEventListener()方法:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML DOM oncopy event</title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green"> 
          GeeksforGeeks 
      </h1> 
        <h2>HTML DOM oncopy event</h2> 
        <input type="text"
               id="myInput" 
               value="Copy the text"> 
  
        <script> 
            document.getElementById( 
              "myInput").addEventListener("copy", GFGfun); 
  
            function GFGfun() { 
                alert("Done"); 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:
之前:

後:

支持的瀏覽器:下麵列出了oncopy Event支持的瀏覽器:

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


相關用法


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