这是引发错误的代码,不知道为什么,它曾经与 Chrome 一起使用。我现在正在使用 Chromium 并抛出错误Uncaught TypeError: Cannot read property 'length' of undefined
$wnd.addEventListener("paste",processEvent);
function processEvent(e) {
if (e.clipboardData && e.clipboardData.getData) {
console.log("clipboard from event"); // can see in console log
var items = e.clipboardData.items;
if(items.length == 0){ // error here
}
}
}
所以看来问题var items
是未定义的