如果用户在 textarea#q 中键入一些内容,则调用do_domething()函数。如果用户粘贴文本而不是键入文本,则应避免使用 do_something() 函数。有任何想法吗?这是我当前的代码:
$('#q').keyup(function(e){
do_something();
}).bind('paste',function(event) {
//user pasted text, there is not need to do_something();
//tried both of these approaches, none worked out.
event.stopPropagation();
event.stopImmediatePropagation();
});