|
|
@ -2,21 +2,21 @@ $(function(){ |
|
|
|
$(".prompt").click(function(){ |
|
|
|
$(".prompt").click(function(){ |
|
|
|
$(".model_wrap").show(); |
|
|
|
$(".model_wrap").show(); |
|
|
|
$(".model-bg").eq(0).removeClass("unchoose"); |
|
|
|
$(".model-bg").eq(0).removeClass("unchoose"); |
|
|
|
|
|
|
|
$('.jump').removeClass('unchoose'); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(".model-bg").each(function (i,item) { |
|
|
|
$(".model-bg").each(function (i) { |
|
|
|
var _that=$(this); |
|
|
|
var _that=$(this); |
|
|
|
_that.find(".nextPage").click(function () { |
|
|
|
_that.find(".nextPage").click(function () { |
|
|
|
_that.addClass("unchoose"); |
|
|
|
_that.addClass("unchoose"); |
|
|
|
$(".model-bg").eq(i+1).removeClass("unchoose"); |
|
|
|
$(".model-bg").eq(i+1).removeClass("unchoose"); |
|
|
|
console.log(i); |
|
|
|
|
|
|
|
console.log(i+1); |
|
|
|
|
|
|
|
console.log(item); |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
// $(".nextPage").click(function () {
|
|
|
|
|
|
|
|
// $('.model-bg').togg
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
// })
|
|
|
|
|
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(".jump").click(function () { |
|
|
|
|
|
|
|
$(this).addClass('unchoose'); |
|
|
|
|
|
|
|
$(".model_wrap").hide(); |
|
|
|
|
|
|
|
$(".model-bg").addClass("unchoose"); |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |