我正在尝试单击放置区以打开文件选择器, 在控制台上尝试
时,javascript代码有效var myDropZone =$('.dropzone').get(0).dropzone;
myDropZone.hiddenFileInput.click();
但使用扩展名
chrome.tabs.executeScript(null, { file: "jquery-3.2.1.min.js" }, function() {
chrome.tabs.executeScript(null,{code: 'var myDropZone =$(\'.dropzone\').get(0).dropzone; myDropZone.hiddenFileInput.click();'});
});
我在控制台中收到此错误:
Uncaught (in promise) TypeError: Cannot read property 'hiddenFileInput' of undefined