$(function(){ $(".video-play").on("click", function(){ let iframeSrc = $(this).data("iframe-src") if(iframeSrc){ $(this).next(".videobox").find("iframe").prop("src", iframeSrc) $(this).hide() $(this).next(".videobox").show() } }) //magazine頂端分類連結 手機展開 $(document).on("click", ".classify-wrapper", function(e){ let target = $(this).find(".topbar-title") if(!$(e.target).hasClass("slideitem")){ if (target.hasClass("open")){ target.removeClass("open") }else{ target.addClass("open") } } }) $(".video-date").each(function(){ let date = dateFormat($(this).text()) $(this).text(date) }) })