$(function(){ $(document).on("click", ".codebox-copy", function(){ let code = $(".codebox-code").text() window.navigator.clipboard.writeText(code) alert("複製成功") }) $(document).on("click", ".social-line", function(e){ let _this = $(this) href = _this.prop("href") if(!DeviceIsTouch()) { //非行動裝置 e.preventDefault() $("#InvitePopup").addClass("is-show") } $(document).on("click", ".popup-background", function(e){ if((e.currentTarget == e.target) || $(e.target).hasClass("popup-closer")){ $(this).removeClass("is-show") } }) }) })