答案 0 :(得分:0)
像这样编辑
$('.lightbox').click(function() {
var thisBox = $(this).attr("name");
//console.log(thisBox);
$('.backdrop,.' + thisBox).animate({
'opacity': '.50'
}, 300, 'linear');
$('.box').animate({
'opacity': '1.00'
}, 300, 'linear');
$('.backdrop,.' + thisBox).css('display', 'block');
});
只需评论console.log(thisBox)