window.addEventListener("paste", pasteHandler);//detects paste event and calls function
function pasteHandler(e) {//code here}
我有另一个按钮,它需要调用相同的 pasteHandler 函数。我可以想到以下,这是行不通的
$('#Button1').bind("click", pasteHandler);
pastehandler 函数将剪贴板数据复制到一个 div 中。需要帮助。提前致谢。