$(function(){ if($(window).width()>767){ $(".pdf_a").each(function(){ $(this).attr("href","javascript:void(0);") }) $(document).on("click",".pdf_a",function(){ var height=$(this).offset().top; var topPin =$(this).offset().top - $(window).scrollTop(); var topheight=height - topPin + 50; $('.notice_tac').css({'top':topheight}) var src = $(this).data("src"); var title = $(this).data("title"); var time = $(this).data("time"); $(".notice_pdfbox iframe").attr("src",src); $(".notice_down01").attr("href",src); $(".notice_tac .left h3").text(title) $(".notice_tac .left .notice_time").text(time) $(".blank_71,.notice_tac").stop().fadeIn(); }) $(document).on("click",".tac_close,.notice_down02,.blank_71",function(){ $(".blank_71,.notice_tac").stop().fadeOut(); }) } }) function caseAjax(str,url){ if (url.indexOf('?') == -1) { url += '?tm=' + Math.random(); }else { url += '&tm=' + Math.random(); } $.ajax({ url:url, success:function(msg){ $(str).html(""); $(str).append(msg); intr_histop(); intr_honor(); imgratio(); } }); }