2

我试图弄清楚如何Try this recipe在这个 twitter 共享功能的开头输出文本字符串。所以当你点击按钮分享它会说“试试这个食谱”然后有网址等。谢谢。

function load_twitter() {
    var load = window.open('http://twitter.com/share?url='+ window.location.href +'&via=atsbyvermouth','','scrollbars=no,menubar=no,height=450,width=650,resizable=yes,toolbar=no,location=no,status=no');
}
4

1 回答 1

2

很简单,text=Try this recipe&先加上这个,即

function load_twitter() { 
    window.open('http://twitter.com/share?text=Try this recipe&url='+ window.location.href +'&via=atsbyvermouth','','scrollbars=no,menubar=no,height=450,width=650,resizable=yes,toolbar=no,location=no,status=no'); 
}

演示

于 2012-09-06T02:43:58.893 回答