我試過環顧Stackoverflow,但找不到任何特別的東西。從Chrome擴展程序的Javascript中獲取標籤網址
所以基本上,我有我的網站共享頁面,是這樣的:
http://domain.com/share.php?link=http://sharing.url
我的分機是這樣的:
{
...
"browser_action": {
"default_icon": "icon.ico",
"default_popup": "schare.html"
}
...
}
schare.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>
and popup.js:
document.getElementById("iframes").setAttribute("src", "http://domain.com/share.php?link="+location.href+"");
但這是錯誤的網址。如何在沒有做任何太花哨的事情的情況下獲得標籤網址?
做:'-URL ...? – 2012-08-03 20:12:09