Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有我的扩展,通过添加标签将 JS 文件加载到网站。
但是这个 JS 脚本正在从扩展目录加载图像,但它不能,因为它不知道扩展目录。
我不能使用 chrome.extension.getURL 因为它不起作用。
我找到了非最佳解决方案:
function geturl(url) { var path = ($('script[src$=jquery.lightbox-0.5.js]').attr('src')).split('/').slice(0, -1).join('/')+'/' return path+url; }
它有效,但对我来说似乎不是最佳选择。