在javascript函数中使用当前网址
这个问题在这里已经有了答案:
window.location.href
包含页面的当前URL。
所以你的函数应该是这样的:
function twitterShare(){
window.open('http://twitter.com/intent/tweet?text=Check this out here: ' + window.location.href,
"twitterWindow", "height=380,width=660,resizable=0,toolbar=0,menubar=0,status=0,location=0,scrollbars=0")
return false;
}
你可以使用window.location.href
。 它保存当前页面的值。