求事件委托的优雅写法

$('body').on('click',$("#id1"),function(){

     $('html body').animation({

        scrollTop: $("#id1").offset().top

    },0)

})

$('body').on('click',$("#id2"),function(){

     $('html body').animation({

        scrollTop: $("#id2").offset().top

    },0)

})


id选择器都是同一个button类型的,如果有多个button,优雅的写法应该怎么写


ibeautiful
浏览 478回答 1
1回答

汪汪一只猫

$('body').on('click',$(".className"),function(){     $('html body').animation({        scrollTop: $(this).offset().top    },0)})//或者$('body').on('click',$("#id1,#id2"),function(){     $('html body').animation({        scrollTop: $(this).offset().top    },0)})
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript