rhanziy

js.index번호, 객체 복제 본문

Html_css_js

js.index번호, 객체 복제

rhanziy 2021. 12. 20. 13:31
$(".thumb > img").click(function(){
    var index = $(this).index();   // index 이벤트가 발생한 인덱스번호
    $(".thumb > img").removeClass("active");
    $(this).addClass("active");
    $(".package").removeClass("active");
    $(".package").eq(index).addClass("active");
    $(".text-box > ul > li").removeClass("active");
    $(".text-box > ul > li").eq(index).addClass("active");  
});

객체복제 .clone( ), 이벤트 발생여부는 .clone(true)로. appendTo = 어디에 복제할건지

$('.wheel-bg').clone().appendTo('article');

 

'Html_css_js' 카테고리의 다른 글

javascript. script태그 async 와 defer의 차이점  (0) 2022.01.16
css.반응형 폰트사이즈 관련 팁  (0) 2021.12.30
css.background, drop-shadow  (0) 2021.12.20
fullpage.js 플러그인 옵션  (0) 2021.12.18
js.스크롤이벤트 fade  (0) 2021.12.17
Comments