-2
textarea onclick="this.focus(); this.select();" rows="1" cols="100" readonly="readonly" style="background: #ffffcc; font-family: Monospace;">
a href="http://127.0.0.1:8000/ajax/share?url=......" onclick="window.open(this.url, 'blabla', 'width=600,height=400 ');">
/文本区域>

我想做一些像 Twitter 那样的插件。我的意思是这个最简单的“Tweet this”。这是粘贴的代码,但我现在不知道如何获取当前网站的 url。也许是一个 javascript 但如何?你能修改我的代码吗?

4

1 回答 1

2

您可以从 window.location.href 获取当前页面的 url:

<button onclick="window.open('http://myUrl?from='+window.location.href)">
    Click!
</button>
于 2012-06-13T16:20:16.777 回答