chrome扩展打开dropzone文件选择器

时间:2018-09-02 17:13:13

标签: javascript google-chrome click dropzone

我正在尝试单击放置区以打开文件选择器, 在控制台上尝试

时,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 

0 个答案:

没有答案