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');"> /textarea>
我想制作像Twitter这样的插件。我的意思是这个最简单的'推文。' 这是一个粘贴代码,但我现在不知道如何获取当前网站的网址。也许是一个JavaScript,但如何?你可以修改我的代码吗?
答案 0 :(得分:2)
您可以从window.location.href获取当前页面的网址:
<button onclick="window.open('http://myUrl?from='+window.location.href)">
Click!
</button>