$(document).ready(function () { $(".f_top_btn").click(function (e) { e.preventDefault(); $("html, body").animate({ scrollTop: 0 }, 500); }); }); $(function () { $("button[type='button'].goaction").on("click", function () { console.log("클릭클릭"); const action = $(this).data("action"); switch (action) { case "portfolio": // 포트폴리오 버튼 로직 location.href = "/downPageView.jsp?pdf=1"; break; case "brochure": // 브로셔 버튼 로직 location.href = "/downPageView.jsp?pdf=2"; break; case "contact": // 문의하기 버튼 로직 location.href = "/request/index.jsp"; break; case "goportfolio": // 포트폴리오 이동 location.href = "/portfolio/index.jsp"; break; case "ongoing": // 온고잉 이동 location.href = "/portfolio/ongoing/index.jsp"; break; case "notice": const noticecurreqpageno = $(this).data("curreqpageno"); const noticeno = $(this).data("notice"); // 소식 이동 location.href = "index.jsp?reqPageNo=" + noticecurreqpageno + "&no=" + noticeno; break; default: console.log("알 수 없는 버튼 클릭"); } }); });