Chrome扩展名:Jquery.load带有扩展名嵌入的本地html文件

时间:2018-07-20 14:27:21

标签: google-chrome-extension

尝试添加带有内容脚本的按钮,该脚本带有扩展名嵌入的本地file.html。

console.log(chrome.runtime.getURL("file.html"));
// Output: chrome-extension://jgadohdbhbbbnlbmaelmgpjccnhadenl/file.html
// If I go to this path it is displayed correctly

$('.theClass').load(chrome.runtime.getURL("file.html"));
// Output: GET chrome-extension://invalid/ 0 ()

$()。append(“ ....”)可以工作,但是我想要一个外部html以便能够从IDE中完成代码等。

有什么想法为什么加载表明路径无效?

0 个答案:

没有答案