2011-10-23 128 views
1

我想在用戶粘貼時觸發事件。有沒有辦法捕捉剪貼板粘貼事件w jQuery?

我有一個CONTENTEDITABLE股利和當用戶粘貼我想要捕捉的事件,然後集中回CONTENTEDITABLE DIV在不默認執行的膏的結束。

想法?

感謝

+0

可能的[jQuery的捕捉糊輸入(http://stackoverflow.com/questions/686995/jquery-catch-paste-input) –

回答

1

我不知道,如果這個工程跨瀏覽器,它的工作在Chrome:

$('body').bind('paste',function(){alert(1)}); 
+1

重複對於跨瀏覽器支持我發現特殊模式的文章:HTTP:// WWW。 quirksmode.org/dom/events/cutcopypaste.h TML – topek

1

您可以綁定到 '粘貼' 事件 -

jQuery(document).bind('paste', function(e){ alert('pasting!') })