this.window.location.href
在 html 文件中的 chrome 扩展中不起作用我在脚本中尝试了这个函数:
function myFunction()
{
var pl = this.window.location.href;
var sWords= localStorage.getItem(pl);
document.write(pl);
}
它给了我:
chrome-extension://ebeadbfnnghmakkbimckpdmocjffkbjc/popup.html
那么我应该怎么做才能获得页面的链接?