按钮html
<a id="shareBtn" href="javascript:void(0)" onclick="weiboShare()" target="_blank"><i class="fa fa-share-alt" aria-hidden="true">i>微博分享a>
jQuery代码
使用微博分享必须使用encodeURIComponent()函数进行解析
function weiboShare(){
var wb_shareBtn = document.getElementById("shareBtn")
wb_url = encodeURIComponent(document.URL), //获取当前页面地址,也可自定义例:wb_url = "http://liuyanzhao.com"
wb_title = $('#weibaol').html(),//标题
wb_pic = encodeURIComponent("http://nimg.ws.126.net/?url=http://dingyue.ws.126.net/2021/0628/29618e08j00qverj7001ec000ci00loc.jpg&thumbnail=650x2147483647&quality=80&type=jpg"),图片
wb_language = encodeURIComponent("zh_cn");
wb_shareBtn.setAttribute("href","http://service.weibo.com/share/share.php?url="+wb_url+"&title="+wb_title+"&pic="+wb_pic+"&language="+wb_language+"");
}
0条评论