使用JQuery将文本粘贴到textarea中

前端之家收集整理的这篇文章主要介绍了使用JQuery将文本粘贴到textarea中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我必须使用 JQuery来处理一个文本区域的粘贴事件.我已经尝试了以下代码,但它不工作…
$(document).ready(function()
{ 
  $('#txtcomplaint').keyup(function()
  {  
     TextCounter('txtcomplaint','counterComplaint',1000 ); 
  }) 
  $('#txtcomplaint').onpaste(function()
  {  
     alert()
     //TextCounter('txtcomplaint',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);
});
原文链接:https://www.f2er.com/jquery/179899.html

猜你在找的jQuery相关文章