我正在尝试将on paste事件绑定到我的jquery文本编辑器,以便我可以粘贴为纯文本。我已将第二行添加到jquery-te-1.4.0.js
。
editor.attr("contenteditable","true").html(thisElementVal);
editor.attr("onPaste","$(this).bind('paste', function (e) { e.preventDefault(); var text = e.clipboardData.getData('text/plain'); console.log(text) });").html(thisElementVal);
出于某种原因输出,
Uncaught TypeError: Cannot read property 'getData' of undefined
有人可以帮帮我吗?感谢。+
答案 0 :(得分:0)
显然var text = e.originalEvent.clipboardData.getData('Text');
让它发挥作用。