粘贴元素内容时在 JavaScript 中会发生什么事件?


当你在元素中粘贴内容时,将触发onpaste 事件。

示例

你可以尝试运行以下代码,了解如何在 JavaScript 中使用onpaste 事件。

<!DOCTYPE html>
<html>
    <body>
      <input type="text" onpaste="pasteFunction()" value="paste text here">
      <script>
         function pasteFunction() {
            document.write("Text pasted successfully!");
         }
      </script>
   </body>
</html>

更新时间: 2020-05-23

82 次浏览

开启你的职业生涯

通过完成课程获得认证

入门
广告