这是我的mainfest.json:
"content_scripts": [
{
"matches": ["*://www.XXX.com/*/new_topic"],
"js": ["js/jquery.min.js","js/fill.js"],
"html":["template/fill_content.html"]
}
],
在fill.js中,我想在其中加载fill_content.html,但是它请求的域是www.xxx.com:
$('.DraftEditor-root').load('./template/fill_content.html');
如何加载模板html文件?