我试着环顾 Stackoverflow,但找不到任何专门针对此的东西。
所以基本上,我的网站有一个共享页面,如下所示:
http://domain.com/share.php?link=http://sharing.url
我的扩展是这样的:
{
...
"browser_action": {
"default_icon": "icon.ico",
"default_popup": "schare.html"
}
...
}
共享.html:
<style>
body, html{
margin:0;
padding:0;
}
iframe{
width:520px;
height:200px;
margin:0;
}
</style>
<iframe id="iframes" frameborder="0"></iframe>
<script type="text/javascript" src="popup.js"></script>
和popup.js:
document.getElementById("iframes").setAttribute("src", "http://domain.com/share.php?link="+location.href+"");
但这是错误的 URL。我怎样才能在不做任何太花哨的事情的情况下获得标签网址?