首页 > 代码库 > JS 实现新浪微博, QQZone 等的分享

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

 <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>