$(document).ready(function(){ //header導轉 $(document).on("click", ".header-btn", function(){ let _this = $(this) let target = _this.data("target") if(target){ $("html, body").animate({ scrollTop: $(target).offset().top - $(".lottery-header").height() - 30 }) } }) //QA切換 $(document).on("click", ".lottery-title .title-toggle", function(){ let _this = $(this) let target = _this.data("target") if(target){ $(".title-toggle").removeClass("in-active") _this.addClass("in-active") _this.parents(".lottery-block").find(".lottery-content").addClass("hide") $(target).removeClass("hide") } }) //手機切換header $(document).on("click", ".header-burger", function(){ $(".lottery-header").toggleClass("in-open") }) });