我有这个js函数
function twitterShare(){
window.open( 'http://twitter.com/intent/tweet?text='+$(".section-title h1").text() +'
'+window.location, "twitterWindow",
"height=380,width=660,resizable=0,toolbar=0,menubar=0,status=0,location=0,scrollbars=0")
return false;
}
当 twitter 窗口打开时,它会抓取 .section-title h1 类,但我需要它说这样的话,
“在这里查看:http: //currentwebsiteurl.com ”
我需要一个文本字符串,然后获取页面的 url。
任何帮助将不胜感激。