推广平台>我的游戏--更新

master
chenxiaojun 5 years ago
commit db848b5cf0

@ -879,6 +879,7 @@
var logo = null;
var logoSrc = $(linkTag).parents('.game-li').eq(0).find('.img-box').children('img').attr('src');
console.log(isImg(logoSrc));
if (isImg(logoSrc)) {
logo = $(linkTag).parents('.game-li').eq(0).find('.img-box').children('img')[0]
} else {
@ -909,10 +910,8 @@
function isImg(src) {
var img = new Image();
img.src = src;
img.onload = function () {
if (img.width > 0 || img.height > 0) {
return true;
}
if (img.width > 0 || img.height > 0) {
return true;
}
return false;
}

Loading…
Cancel
Save