首页 > Web开发 > 详细

JS 实现新浪微博, QQZone 等的分享

时间:2014-06-18 14:11:50      阅读:567      评论:0      收藏:0      [点我收藏+]
 <script type="text/javascript">window.pageConfig = { compatible: true,searchType: 1 }; </script>
	
	<script type="text/javascript">
		
		var t_url = "http://192.168.1.105:8080/MyHBook/";
		
		function convertURL(url) {
			return t_url + url;
		}
		function convertPicUrl(picurl) {
			return t_url + picurl;
		}
		//分享到新新浪微博
		function shareWeiBo(title,url,picurl){
			//alert(">>>");
			//alert(title + " : " + url + " : " + picurl);
			url = convertURL(url);
			picurl = convertPicUrl(picurl);
			//alert(url + " : " + picurl);
			var sharesinastring=‘http://v.t.sina.com.cn/share/share.php?title=‘+title+‘&url=‘+url+‘&content=utf-8&sourceUrl=‘+url+‘&pic=‘+picurl;  
			 window.open(sharesinastring,‘newwindow‘,‘height=400,width=400,top=100,left=100‘);
		}
		//分享到腾讯微博
		function shareTCWeiBo(title,url,picurl){
			//alert(">>>");
			//alert(title + " : " + url + " : " + picurl);
			 url = convertURL(url);
			 picurl = convertPicUrl(picurl);
			var shareqqstring=‘http://v.t.qq.com/share/share.php?title=‘+title+‘&url=‘+url+‘&pic=‘+picurl;  
			 window.open(shareqqstring,‘newwindow‘,‘height=400,width=400,top=100,left=100‘);  
		}
		//分享到QQ空间  
		function shareQZone(title,url,picurl)  { 
			 url = convertURL(url);
			 picurl = convertPicUrl(picurl);
			 //alert(url + " : " + picurl);
			 var shareqqzonestring=‘http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?summary=‘+title+‘&url=‘+url+‘&pics=‘+picurl;  
			 window.open(shareqqzonestring,‘newwindow‘,‘height=400,width=400,top=100,left=100‘);  
		}  
	</script>

  

 

JS 实现新浪微博, QQZone 等的分享,布布扣,bubuko.com

JS 实现新浪微博, QQZone 等的分享

原文:http://www.cnblogs.com/E-star/p/3791499.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!