You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
495 B
19 lines
495 B
$(function(){
|
|
$(".prompt").click(function(){
|
|
$(".model_wrap").show();
|
|
$(".model-bg").eq(1).removeClass("unchoose");
|
|
});
|
|
|
|
|
|
$(".model-bg").each(function (i,item) {
|
|
$(this).find(".nextPage").click(function () {
|
|
|
|
console.log(i);
|
|
console.log(item);
|
|
})
|
|
// $(".nextPage").click(function () {
|
|
// $('.model-bg').togg
|
|
// $(this).addClass("unchoose").eq(i).removeClass("unchoose");
|
|
// })
|
|
})
|
|
}); |