按钮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+"");
}
1. 本站所有素材(未指定商用),仅限学习交流请勿用于商业用途。
2. 原创商用和VIP素材,未经合法授权,会员不得以任何形式发布、传播、复制、转售该素材,否则一律封号处理。
3. 如果素材损害你的权益请联系客服vx:13230981129给予处理。