|
@@ -23,7 +23,8 @@ $(function(){
|
|
|
document.querySelector('.qqHy').onclick=function(){
|
|
|
let title = $('.videoList li.active .txt h4').text(),
|
|
|
img=$('.videoList li.active img').attr('src');
|
|
|
- shareQQ_friend(title, window.location.href, img)
|
|
|
+ shareQQ_friend(title, window.location.href, img)
|
|
|
+
|
|
|
};
|
|
|
//qq
|
|
|
document.querySelector('.qqKj').onclick=function(){
|
|
@@ -68,10 +69,10 @@ $(function(){
|
|
|
}
|
|
|
//qq好友
|
|
|
function shareQQ_friend(_title,_url,picurl){
|
|
|
- var _shareUrl = 'https://connect.qq.com/widget/shareqq/iframe_index.html?';
|
|
|
+ var _shareUrl = 'http://connect.qq.com/widget/shareqq/iframe_index.html?';
|
|
|
_shareUrl += 'url=' + encodeURIComponent(_url); //分享的链接
|
|
|
_shareUrl += '&title=' + encodeURIComponent(_title); //分享的标题
|
|
|
_shareUrl+='&pics=' + encodeURIComponent(picurl)
|
|
|
- window.open(_shareUrl,'_blank');
|
|
|
+ window.open(_shareUrl,'_blank','height=520, width=720');
|
|
|
}
|
|
|
})
|