WordPress 将选中文字转发到微博

  为此我还特地去注册了一个腾讯微博开放平台的开拓者,当我开始阅读开拓文档的时候,才发明,他妹的,腾讯官方已经推出一个沟通成果的应用,叫作 “Q-Share”,再翻阅了一下其他资料,本来已经有前辈写出了 js 页面文字选中后分享到新浪微博的要领,那我就省力多了,两者团结一下,把新浪微博和腾讯微博两个按钮都加上了,然后闲的蛋疼的我又把它翻译成了 jQuery 的要领。

  结果的话就可以看本站了,选中任何文字,就会在右上角显示两个微博按钮,点击试试吧。

实现的要领也很简朴,只需要两步:

  1、引入 jQuery,相信大大都 WordPress 博客都已经引入了 jQuery,那就可以直接举办第二步了。

  2、在页面底部,可能更确切的说,在引入 jQuery 库的后头加上这样一段 JS,你就可以看到和本站一样的结果了。

var miniBlogShare = function() {
//指定位置驻入节点
$('<img id="imgSinaShare" class="img_share" title="将选中内容分享到新浪微博" src=http://down.chinaz.com/"http:/wange.im/wp-content/themes/wange/images/sina_share.gif" /><img id="imgQqShare" class="img_share" title="将选中内容分享到腾讯微博" src=http://down.chinaz.com/"http:/wange.im/wp-content/themes/wange/images/tt_share.png" />').appendTo('body');

//默认样式
$('.img_share').css({
display : 'none',
position : 'absolute',
cursor : 'pointer'
});

//选中文字
var funGetSelectTxt = function() {
var txt = '';
if(document.selection) {
txt = document.selection.createRange().text;
} else {
txt = document.getSelection();
}
return txt.toString();
};

//选中文字后显示微博图标
$('html,body').mouseup(function(e) {
if (e.target.id == 'imgSinaShare' || e.target.id == 'imgQqShare') {
return
}
e = e || window.event;
var txt = funGetSelectTxt(),
sh = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0,
left = (e.clientX - 40 < 0) ? e.clientX + 20 : e.clientX - 40,
top = (e.clientY - 40 < 0) ? e.clientY + sh + 20 : e.clientY + sh - 40;
if (txt) {
$('#imgSinaShare').css({
display : 'inline',
left : left,
top : top
});
$('#imgQqShare').css({
display : 'inline',
left : left + 30,
top : top
});
} else {
$('#imgSinaShare').css('display', 'none');
$('#imgQqShare').css('display', 'none');
}
});

//点击新浪微博
$('#imgSinaShare').click(function() {
var txt = funGetSelectTxt(), title = $('title').html();
if (txt) {
window.open('http://v.t.sina.com.cn/share/share.php?title=' + txt + ' —— 转载自:' + title + '&url=' + window.location.href);
}
});

//点击腾讯微博
$('#imgQqShare').click(function() {
var txt = funGetSelectTxt(), title = $('title').html();
if (txt) {
window.open('http://v.t.qq.com/share/share.php?title=' + encodeURIComponent(txt + ' —— 转载自:' + title) + '&url=' + window.location.href);
}
});
}();

  是不是很简朴呀?

  赶忙选中本文的标题,在微博上通知你的挚友来围观吧,哈哈~

WordPress 将选中文字转发到微博



  PS:最后,说一句,其实这个要领不只仅合用于 WordPress,JS 是通用的,你可以把这段 JS 挂载到任何网站上都可以获得沟通的结果

  PS2:最最最后,再说一句,贫苦列位在利用前,把 JS 里的两张微博的图片路径替换本钱身的地点,因为小站流量有限,各人帮我省着点花呗,嘿嘿。

WordPress下载

WordPress v3.5.2 简体中文版下载

WordPress 将选中文字转发到微博

界面预览

  原文地点:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/10385.html