我正在试图弄清楚如何在这个Twitter共享功能的开头输出文本字符串Try this recipe
。所以,当你点击按钮分享它会说“尝试这个食谱”,然后有网址等等谢谢。
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');
}
答案 0 :(得分:1)
这很简单,首先添加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');
}