bnbweb/themes/vr/web/js/item.js
2022-11-14 23:49:28 +08:00

14 lines
422 B
JavaScript
Executable File

// JavaScript Document
$(function(){
$('.item').click(function(){
if($(this).hasClass('hasVideo') && isMobile==true){
var href= $(this).siblings().find('a').attr('href');
window.open(href);
}else if($(this).hasClass('hasVideo') && isMobile==false){
$(this).siblings().find('a').eq(0).click();
}else if($(this).hasClass('hasAlbum')){
$(this).siblings().find('a').eq(0).click();
}
});
});