使用JQuery捕获粘贴到textarea中的文本

使用JQuery捕获粘贴到textarea中的文本

本文介绍了使用JQuery捕获粘贴到textarea中的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须使用JQuery来获取文本区域的粘贴事件。我尝试过以下代码,但它无效...

I have to take the paste event of a text area using JQuery. I have tried the following code but it is not working...

$(document).ready(function()
{
  $('#txtcomplaint').keyup(function()
  {
     TextCounter('txtcomplaint','counterComplaint', 1000 );
  })
  $('#txtcomplaint').onpaste(function()
  {
     alert()
     //TextCounter('txtcomplaint','counterComplaint', 1000 );
  })
});


推荐答案

你可以这样做

$("#txtcomplaint").bind('paste', function(e) {
    var elem = $(this);

    setTimeout(function() {
        // gets the copied text after a specified time (100 milliseconds)
        var text = elem.val();
    }, 100);
});

这篇关于使用JQuery捕获粘贴到textarea中的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 01:16