84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
对于网上的一些分享插件比如百度,JiaThis,bshare等,都是插件的形式,感觉还不够轻量级。想问问各位,不用插件对应的分享有没有dome,可以根据自己定义的样式触发分享,比如微博,QQ空间等
认证高级PHP讲师
谢谢邀请。自定义的分享这是可以的啊!网上有很多demo,你可以自己找找。给你提供微博的参考看看
var top = window.screen.height / 2 - 250; var left = window.screen.width / 2 - 300; var _link = window.location.href; function shareSina(_title) { window.open("http://service.weibo.com/share/share.php?title=" + encodeURIComponent(_title.replace(/ /g, " ").replace(/<br \/>/g, " "))+ "&url=" + encodeURIComponent(_link), "分享至新浪微博", "height=500,width=600,top=" + top + ",left=" + left + ",toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no"); }
直接把这个方法以onclick的形式写到你要触发的标签的里面就行。如<span onclick="shareSina('title');">微博</span>
<span onclick="shareSina('title');">微博</span>
谢谢邀请。自定义的分享这是可以的啊!网上有很多demo,你可以自己找找。给你提供微博的参考看看
直接把这个方法以onclick的形式写到你要触发的标签的里面就行。如
<span onclick="shareSina('title');">微博</span>