$(function(){ // ========================================================== // 影片播放 // ========================================================== $(document).on("click", ".video-cover-wrapper", function(){ let iframeSrc = $(this).data("iframe-src") if(iframeSrc){ $(this).next(".video-play-wrapper").find("iframe").prop("src", iframeSrc) $(this).addClass("hide") $(this).next(".video-play-wrapper").removeClass("hide") } }) // ========================================================== // 取得資料 // ========================================================== $(".video-carousel-item").on("click", function(){ getVideoData($(this).data("video-id")) }) }) //ajax取得資料 function getVideoData(videoId){ let param = { "video_type": $("#videoType").val(), "video_id": videoId } $.ajax({ url: "/video/ajax/ajax_get_video.php", type: "GET", data: param }).done((responseData) => { setVideoData(responseData) }) } //ajax後渲染資料 function setVideoData(data){ let jsonData = JSON.parse(data) if(jsonData){ videoHtml = `

${jsonData.video_data.title}


${jsonData.video_data.webeditor}
` let renderVideoTarget = $(".video-main-container") //渲染列表 renderVideoTarget.html(videoHtml) } }