PC端QQ分享到好友链接

ShareQQ() {
var url =
//这个很重要 腾讯QQ分享外部接口
“https://connect.qq.com/widget/shareqq/index.html” +
“?url=” +
encodeURIComponent(window.location.href) +
//分享的网址链接
“&title=” +
encodeURIComponent(“标题”) +
“&source=” +
encodeURIComponent(
//分享的网址前面列如 www.baidu.com
window.location.href.substring(0, window.location.href.indexOf("?"))
) +
“&summary=” +
encodeURIComponent(document.title) +
//描述详情
“&pics=” +
//图片
encodeURIComponent(
“https://wechat.cdzjkl.com/files/options/avatar1584946687810.jpg”
) +
“&desc=” +
//描述
encodeURIComponent("");
var a = document.createElement(“a”);
a.href = url;
a.target = “_blank”;
a.click();
},

PC端QQ分享到好友链接
PC端QQ分享到好友链接