새창내용을 새창을 띠우지않고 게시판목록의 상단에 위치시키고 싶습니다.. 채택완료

https연결시 새창이 동작하지않는관계로

리스트에서 새창내용을 표시할수없을까고민하고 있습니다.. 

리스트스킨과 새창소스코드 첨부합니다......

 

list.skin.php

Copy
<?php

if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가

 

// 선택옵션으로 인해 셀합치기가 가변적으로 변함

$colspan = 5;

 

if ($is_checkbox) $colspan++;

if ($is_good) $colspan++;

if ($is_nogood) $colspan++;

 

// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨

add_stylesheet('<link rel="stylesheet" href="'.$board_skin_url.'/style.css">', 0);

?>

 

<!-- 게시판 목록 시작 { -->

<div id="bo_list" style="width:<?php echo $width; ?>">


 

    <!-- 게시판 페이지 정보 및 버튼 시작 { -->

    <div id="bo_btn_top">

        <div id="bo_list_total">

            <span>Total <?php echo number_format($total_count) ?>건</span>

            <?php echo $page ?> 페이지

        </div>

 

        <?php if ($rss_href || $write_href) { ?>

        <ul class="btn_bo_user">

            <?php if ($rss_href) { ?><li><a href="<?php echo $rss_href ?>" class="btn_b01 btn"><i class="fa fa-rss" aria-hidden="true"></i> RSS</a></li><?php } ?>

            <?php if ($admin_href) { ?><li><a href="<?php echo $admin_href ?>" class="btn_admin btn"><i class="fa fa-user-circle" aria-hidden="true"></i> 관리자</a></li><?php } ?>

            <?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02 btn"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> 글쓰기</a></li><?php } ?>

        </ul>

        <?php } ?>

    </div>

    <!-- } 게시판 페이지 정보 및 버튼 끝 -->

 

    <!-- 게시판 카테고리 시작 { -->

    <?php if ($is_category) { ?>

    <nav id="bo_cate">

        <h2><?php echo $board['bo_subject'] ?> 카테고리</h2>

        <ul id="bo_cate_ul">

            <?php echo $category_option ?>

        </ul>

    </nav>

    <?php } ?>

    <!-- } 게시판 카테고리 끝 -->

 

    <form name="fboardlist" id="fboardlist" action="./board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post">

    <input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">

    <input type="hidden" name="sfl" value="<?php echo $sfl ?>">

    <input type="hidden" name="stx" value="<?php echo $stx ?>">

    <input type="hidden" name="spt" value="<?php echo $spt ?>">

    <input type="hidden" name="sca" value="<?php echo $sca ?>">

    <input type="hidden" name="sst" value="<?php echo $sst ?>">

    <input type="hidden" name="sod" value="<?php echo $sod ?>">

    <input type="hidden" name="page" value="<?php echo $page ?>">

    <input type="hidden" name="sw" value="">

 

    <div class="tbl_head01 tbl_wrap">

        <table>

        <caption><?php echo $board['bo_subject'] ?> 목록</caption>

        <thead>

        <tr>

            <?php if ($is_checkbox) { ?>

            <th scope="col">

                <label for="chkall" class="sound_only">현재 페이지 게시물 전체</label>

                <input type="checkbox" id="chkall" onclick="if (this.checked) all_checked(true); else all_checked(false);">

            </th>

            <?php } ?>

            <th scope="col">번호</th>

            <th scope="col" class=""></th>

            <th scope="col">제목</th>

 

            <th scope="col" class="pc">글쓴이</th>

            <th scope="col" class="pc"><?php echo subject_sort_link('wr_hit', $qstr2, 1) ?>조회 <i class="fa fa-sort" aria-hidden="true"></i></a></th>

            <?php if ($is_good) { ?>

            <th scope="col" class=""><?php echo subject_sort_link('wr_good', $qstr2, 1) ?>추천 <i class="fa fa-sort" aria-hidden="true"></i></a></th><?php } ?>

            <?php if ($is_nogood) { ?>

            <th scope="col" class=""><?php echo subject_sort_link('wr_nogood', $qstr2, 1) ?>비추천 <i class="fa fa-sort" aria-hidden="true"></i></a></th><?php } ?>

            <th scope="col" class="pc"><?php echo subject_sort_link('wr_datetime', $qstr2, 1) ?>날짜  <i class="fa fa-sort" aria-hidden="true"></i></a></th>

        </tr>

        </thead>

        <tbody>

        <?php

        for ($i=0; $i<count($list); $i++) {

         ?>

 

        <tr class="<?php if ($list[$i]['is_notice']) echo "bo_notice"; ?>">

            <?php if ($is_checkbox) { ?>

            <td class="td_chk">

                <label for="chk_wr_id_<?php echo $i ?>" class="sound_only"><?php echo $list[$i]['subject'] ?></label>

                <input type="checkbox" name="chk_wr_id[]" value="<?php echo $list[$i]['wr_id'] ?>" id="chk_wr_id_<?php echo $i ?>">

            </td>

            <?php } ?>

            <td class="td_num2">

            

            <?php

            if ($list[$i]['is_notice']) // 공지사항

                echo '<strong class="notice_icon"><i class="fa fa-bullhorn" aria-hidden="true"></i><span class="sound_only">공지</span></strong>';

            else if ($wr_id == $list[$i]['wr_id'])

                echo "<span class=\"bo_current\">열람중</span>";

            else

                echo $list[$i]['num'];

             ?>

            </td>

            <td class="td_list ">

            <?php

                 if (!$list[$i]['is_notice']) {

            ?>

                <img src="<?php echo $board_skin_url?>/img/icon_list.png">

 

            <?

             }  

            ?>

            </td>

            <td class="td_subject" style="padding-left:<?php echo $list[$i]['reply'] ? (strlen($list[$i]['wr_reply'])*10) : '0'; ?>px">

                <div class="bo_tit">

                <?php

                if ($is_category && $list[$i]['ca_name']) {

                 ?>

                <a href="<?php echo $list[$i]['ca_name_href'] ?>" class="bo_cate_link">[<?php echo $list[$i]['ca_name'] ?>]</a> 

                <?php } ?>  

                

 

                 <?php if ($is_checkbox) { ?>

                    <a href="<?php echo $list[$i]['href'] ?>">

                        <?php echo $list[$i]['icon_reply'] ?>

                        <?php

                            if (isset($list[$i]['icon_secret'])) echo rtrim($list[$i]['icon_secret']);

                         ?>

                        <?php echo $list[$i]['subject'] ?>

                       

                    </a>

                 <?php }else{ ?>    

                    <a href="<?php echo $board_skin_url ?>/view_user.php?bo_table=<?php echo $bo_table;?>&wr_id=<?php echo $list[$i]['wr_id'];?>" class="mun_view"  >

                        <?php echo $list[$i]['icon_reply'] ?>

                        <?php

                            if (isset($list[$i]['icon_secret'])) echo rtrim($list[$i]['icon_secret']);

                         ?>

                        <?php echo $list[$i]['subject'] ?>

                       

                    </a>

                 <?php } ?> 




 

                    <?php

                    // if ($list[$i]['file']['count']) { echo '<'.$list[$i]['file']['count'].'>'; }

                    if (isset($list[$i]['icon_file'])) echo rtrim($list[$i]['icon_file']);

                    if (isset($list[$i]['icon_link'])) echo rtrim($list[$i]['icon_link']);

                    if (isset($list[$i]['icon_new'])) echo rtrim($list[$i]['icon_new']);

                    if (isset($list[$i]['icon_hot'])) echo rtrim($list[$i]['icon_hot']);

                    ?>

                    <?php if ($list[$i]['comment_cnt']) { ?><span class="sound_only">댓글</span><span class="cnt_cmt">+ <?php echo $list[$i]['wr_comment']; ?></span><span class="sound_only">개</span><?php } ?>

                </div>

                <div class="mobile" style='margin-top:7px;'>

                    <strong><?php echo $list[$i]['name'] ?></strong> | 

                    조회수 : <strong><?php echo $list[$i]['wr_hit'] ?></strong> | 

                    시간 : <?php echo $list[$i]['datetime2'] ?>

                </div>

            </td>

            <td class="td_name sv_use pc"><?php echo $list[$i]['name'] ?></td>

            <td class="td_num pc"><?php echo $list[$i]['wr_hit'] ?></td>

            <?php if ($is_good) { ?><td class="td_num"><?php echo $list[$i]['wr_good'] ?></td><?php } ?>

            <?php if ($is_nogood) { ?><td class="td_num"><?php echo $list[$i]['wr_nogood'] ?></td><?php } ?>

            <td class="td_datetime pc"><?php echo $list[$i]['datetime2'] ?></td>

        </tr>


 

        <?php } ?>

        <?php if (count($list) == 0) { echo '<tr><td colspan="'.$colspan.'" class="empty_table">게시물이 없습니다.</td></tr>'; } ?>

        </tbody>

        </table>

    </div>

 

    <?php if ($list_href || $is_checkbox || $write_href) { ?>

    <div class="bo_fx">

        <?php if ($list_href || $write_href) { ?>

        <ul class="btn_bo_user">

            <?php if ($is_checkbox) { ?>

            <li><button type="submit" name="btn_submit" value="선택삭제" onclick="document.pressed=this.value" class="btn btn_admin">선택삭제</button></li>

            <li><button type="submit" name="btn_submit" value="선택복사" onclick="document.pressed=this.value" class="btn btn_admin">선택복사</button></li>

            <li><button type="submit" name="btn_submit" value="선택이동" onclick="document.pressed=this.value" class="btn btn_admin">선택이동</button></li>

            <?php } ?>

            <?php if ($list_href) { ?><li><a href="<?php echo $list_href ?>" class="btn_b01 btn"><i class="fa fa-list" aria-hidden="true"></i> 목록</a></li><?php } ?>

            <?php if ($write_href) { ?><li><a href="<?php echo $write_href ?>" class="btn_b02 btn"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> 글쓰기</a></li><?php } ?>

        </ul>

        <?php } ?>

    </div>

    <?php } ?>

 

    </form>

     

       <!-- 게시판 검색 시작 { -->

    <fieldset id="bo_sch">

        <legend>게시물 검색</legend>

 

        <form name="fsearch" method="get">

        <input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">

        <input type="hidden" name="sca" value="<?php echo $sca ?>">

        <input type="hidden" name="sop" value="and">

        <label for="sfl" class="sound_only">검색대상</label>

        <select name="sfl" id="sfl">

            <option value="wr_subject"<?php echo get_selected($sfl, 'wr_subject', true); ?>>제목</option>

            <option value="wr_content"<?php echo get_selected($sfl, 'wr_content'); ?>>내용</option>

            <option value="wr_subject||wr_content"<?php echo get_selected($sfl, 'wr_subject||wr_content'); ?>>제목+내용</option>

            <option value="mb_id,1"<?php echo get_selected($sfl, 'mb_id,1'); ?>>회원아이디</option>

            <option value="mb_id,0"<?php echo get_selected($sfl, 'mb_id,0'); ?>>회원아이디(코)</option>

            <option value="wr_name,1"<?php echo get_selected($sfl, 'wr_name,1'); ?>>글쓴이</option>

            <option value="wr_name,0"<?php echo get_selected($sfl, 'wr_name,0'); ?>>글쓴이(코)</option>

        </select>

        <label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>

        <input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx" class="sch_input" size="25" maxlength="20" placeholder="검색어를 입력해주세요">

        <button type="submit" value="검색" class="sch_btn"><i class="fa fa-search" aria-hidden="true"></i><span class="sound_only">검색</span></button>

        </form>

    </fieldset>

    <!-- } 게시판 검색 끝 -->   

</div>

 

<?php if($is_checkbox) { ?>

<noscript>

<p>자바스크립트를 사용하지 않는 경우<br>별도의 확인 절차 없이 바로 선택삭제 처리하므로 주의하시기 바랍니다.</p>

</noscript>

<?php } ?>



 

<!-- 페이지 -->

<?php echo $write_pages;  ?>

 

<script>

var mun_view=function(href){

    var mun_view=window.open(href,'mun_view','left=350,top=50,width=750,height=750,scrollbars=1,resizable=yes');

    mun_view.focus();

}

 

$(function(){

    $(".mun_view").click(function(){

        mun_view(this.href);

        return false;

    });

 

});

</script>

<?php if ($is_checkbox) { ?>

<script>

function all_checked(sw) {

    var f = document.fboardlist;

 

    for (var i=0; i<f.length; i++) {

        if (f.elements[i].name == "chk_wr_id[]")

            f.elements[i].checked = sw;

    }

}

 

function fboardlist_submit(f) {

    var chk_count = 0;

 

    for (var i=0; i<f.length; i++) {

        if (f.elements[i].name == "chk_wr_id[]" && f.elements[i].checked)

            chk_count++;

    }

 

    if (!chk_count) {

        alert(document.pressed + "할 게시물을 하나 이상 선택하세요.");

        return false;

    }

 

    if(document.pressed == "선택복사") {

        select_copy("copy");

        return;

    }

 

    if(document.pressed == "선택이동") {

        select_copy("move");

        return;

    }

 

    if(document.pressed == "선택삭제") {

        if (!confirm("선택한 게시물을 정말 삭제하시겠습니까?\n\n한번 삭제한 자료는 복구할 수 없습니다\n\n답변글이 있는 게시글을 선택하신 경우\n답변글도 선택하셔야 게시글이 삭제됩니다."))

            return false;

 

        f.removeAttribute("target");

        f.action = "./board_list_update.php";

    }

 

    return true;

}

 

// 선택한 게시물 복사 및 이동

function select_copy(sw) {

    var f = document.fboardlist;

 

    if (sw == "copy")

        str = "복사";

    else

        str = "이동";

 

    var sub_win = window.open("", "move", "left=50, top=50, width=500, height=550, scrollbars=1");

 

    f.sw.value = sw;

    f.target = "move";

    f.action = "./move.php";

    f.submit();

}

</script>

<?php } ?>

<!-- } 게시판 목록 끝 -->

view_user.php

Copy
<?php

include_once('../../common.php');

include_once('../../head.sub.php');


 

$sql_search = "";

// 검색이면

if ($sca || $stx || $stx === '0') {

    // where 문을 얻음

    $sql_search = get_sql_search($sca, $sfl, $stx, $sop);

    

    $search_href = './board.php?bo_table='.$bo_table.'&amp;page='.$page.$qstr;

    $list_href = './board.php?bo_table='.$bo_table;

} else {

    $search_href = '';

    $list_href = './board.php?bo_table='.$bo_table.'&amp;page='.$page;

}


 

    if ($sql_search)

        $sql_search = " and " . $sql_search;

 

    // 윗글을 얻음

    $sql = " select wr_id, wr_subject, wr_datetime from {$write_table} where wr_is_comment = 0 and wr_num = '{$write['wr_num']}' and wr_reply < '{$write['wr_reply']}' {$sql_search} order by wr_num desc, wr_reply desc limit 1 ";

    $prev = sql_fetch($sql);

 

    // 위의 쿼리문으로 값을 얻지 못했다면

    if (!$prev['wr_id'])     {

        $sql = " select wr_id, wr_subject, wr_datetime from {$write_table} where wr_is_comment = 0 and wr_num < '{$write['wr_num']}' {$sql_search} order by wr_num desc, wr_reply desc limit 1 ";

        $prev = sql_fetch($sql);

    }

 

    // 아래글을 얻음

    $sql = " select wr_id, wr_subject, wr_datetime from {$write_table} where wr_is_comment = 0 and wr_num = '{$write['wr_num']}' and wr_reply > '{$write['wr_reply']}' {$sql_search} order by wr_num, wr_reply limit 1 ";

    $next = sql_fetch($sql);

    // 위의 쿼리문으로 값을 얻지 못했다면

    if (!$next['wr_id']) {

        $sql = " select wr_id, wr_subject, wr_datetime from {$write_table} where wr_is_comment = 0 and wr_num > '{$write['wr_num']}' {$sql_search} order by wr_num, wr_reply limit 1 ";

        $next = sql_fetch($sql);

    }


 

// 이전글 링크

$prev_href = '';

if (isset($prev['wr_id']) && $prev['wr_id']) {

    $prev_wr_subject = get_text(cut_str($prev['wr_subject'], 255));

    $prev_href = $board_skin_url.'/view_user.php?bo_table='.$bo_table.'&amp;wr_id='.$prev['wr_id'].$qstr;

    $prev_wr_date = $prev['wr_datetime'];

}

 

// 다음글 링크

$next_href = '';

if (isset($next['wr_id']) && $next['wr_id']) {

    $next_wr_subject = get_text(cut_str($next['wr_subject'], 255));

    $next_href = $board_skin_url.'/view_user.php?bo_table='.$bo_table.'&amp;wr_id='.$next['wr_id'].$qstr;

    $next_wr_date = $next['wr_datetime'];

}



 

    $scrap_href = '/bbs/scrap_popin.php?bo_table='.$bo_table.'&amp;wr_id='.$wr_id;

 

    

 

include_once(G5_LIB_PATH.'/thumbnail.lib.php');

 

// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨

?>

<link rel="stylesheet" href="./style.css">

 

<script src="<?php echo G5_JS_URL; ?>/viewimageresize.js"></script>

 

<!-- 게시물 읽기 시작 { -->

 

<article id="bo_v" style="width:<?php echo $width; ?>">

    <header>

        <h2 id="bo_v_title">

            <?php if ($write['ca_name']) { ?>

            <span class="bo_v_cate"><?php echo $write['ca_name']; // 분류 출력 끝 ?></span> 

            <?php } ?>

            <span class="bo_v_tit">

            <?php

            echo cut_str(get_text($write['wr_subject']), 70); // 글제목 출력

            ?></span>

        </h2>

    </header>

 

        <style>

            #bo_v{padding:20px;margin-top:0px;}

            .mun{height:30px;}

            .answer_area{margin-top:30px;height:30px;}

            .answer_area:after {display:block;visibility:hidden;clear:both;content:""}

            .ans{float:left;border:1px solid #ccc;height:30px;line-height:30px;margin-left:-1px;padding:0px 10px;text-align:center;}

            .ans2{color:#fff;background:orange;cursor:pointer;}

            .ans3{color:#fff;background:#329632;cursor:pointer;}

            #bo_v_atc{margin-top:20px;}

            #bo_v_con{margin-top:10px;border:1px solid #ccc;padding:10px;display:none;}

            .wr_con{width:100%;border:1px solid #ccc;padding:10px;background:#eee;margin-bottom:20px;}


 

            .btn_area{clear:both;width:100%;padding-top:30px;}

            .btn_area .left{float:left;width:33.333%;}

            .btn_area .left .bt1{display:inline-block;width:70px;height:30px;line-height:30px;text-align:center;background: #f0ad4e;color:#fff;}

            .btn_area .right{float:right;width:66.666%;text-align:right;}

            .btn_area .right .bt2{display:inline-block;width:70px;height:30px;line-height:30px;text-align:center;background: #5bc0de;color:#fff;}

            .btn_area .right .bt3{display:inline-block;width:70px;height:30px;line-height:30px;text-align:center;background: #5cb85c;color:#fff;}

 

            @media (max-width: 500px) {

 

            .ans{width:20%;}

            .ans0{display:none;}

            .ans2{width:50%;}

            .ans3{width:50%;}

 

            }

 

        </style>

 

    <section id="bo_v_atc">

        <h2 id="bo_v_atc_title">본문</h2>

 

        <?php

        if ($write["wr_con"]){

        ?>

            <p class="wr_con"  style=""><?php echo nl2br($write["wr_con"])?></p>

        <?php } ?>

 

        <?php 

        for ($i=1;$i<6;$i++){

            if ($i==1) $no="①";

            else if ($i==2) $no="②";

            else if ($i==3) $no="③";

            else if ($i==4) $no="④";

            else if ($i==5) $no="⑤";

 

            if ($write["wr_".$i]){

        ?>

            <p class="mun"><?php echo $no;?> <?php echo $write["wr_".$i];?></p>

        <?php

            }

        }?>

        


 

        <div class="answer_area">

        <p class="ans ans0">정답체크</p>

        <?php 

        for ($i=1;$i<6;$i++){

            if ($i==1) $no="①";

            else if ($i==2) $no="②";

            else if ($i==3) $no="③";

            else if ($i==4) $no="④";

            else if ($i==5) $no="⑤";

 

            if ($write["wr_".$i]){

        ?>

            <p class="ans <?php if ($write["wr_10"]==$i) echo " dap";?>"><input type="radio" name="answer_ok" value="<?php echo $i;?>"><?php echo $i;?>번</p>

        <?php

            }

        }?>

        <p class="ans ans2">정답확인</p>

        <p class="ans ans3">해설보기</p>

        </div>


 

    <script>

 

$(function(){

    $(".ans2").click(function(){

        <?php if (!$member["mb_id"]){?>

            alert("회원로그인 후 보실 수 있습니다.");

            window.self.close();

        <?php } else {?>

            $(".dap").css("color","red");

        <?php } ?>


 

    });

 

    $(".ans3").click(function(){

        <?php if (!$member["mb_id"]){?>

            alert("회원로그인 후 보실 수 있습니다.");

            window.self.close();

        <?php } else {?>

            $("#bo_v_con").show();

        <?php } ?>


 

    });


 

});

</script>   

    

 

        <!-- 본문 내용 시작 { -->

        <div id="bo_v_con"><?php echo nl2br($write['wr_content']); ?></div>

        <?php //echo $write['rich_content']; // {이미지:0} 과 같은 코드를 사용할 경우 ?>

        <!-- } 본문 내용 끝 -->

 

        <?php if ($is_signature) { ?><p><?php echo $signature ?></p><?php } ?>


 

       

    </section>



 

   

    <div class="btn_area">

        <div class="left">

            <a href="<?php echo $scrap_href;  ?>" target="_blank"  onclick="win_scrap(this.href); return false;" class="bt1">스크랩</a>

        </div>

        <div class="right">

        <?php if ($prev_href) { ?><a href="<?php echo $prev_href ?>" class="bt2">이전글</a><?php } ?>

        <?php if ($next_href) { ?><a href="<?php echo $next_href ?>" class="bt3">다음글</a><?php } ?>

        

        </div>

    </div>

  



 

</article>

<!-- } 게시판 읽기 끝 -->


 

<script>

<?php if ($board['bo_download_point'] < 0) { ?>

$(function() {

    $("a.view_file_download").click(function() {

        if(!g5_is_member) {

            alert("다운로드 권한이 없습니다.\n회원이시라면 로그인 후 이용해 보십시오.");

            return false;

        }

 

        var msg = "파일을 다운로드 하시면 포인트가 차감(<?php echo number_format($board['bo_download_point']) ?>점)됩니다.\n\n포인트는 게시물당 한번만 차감되며 다음에 다시 다운로드 하셔도 중복하여 차감하지 않습니다.\n\n그래도 다운로드 하시겠습니까?";

 

        if(confirm(msg)) {

            var href = $(this).attr("href")+"&js=on";

            $(this).attr("href", href);

 

            return true;

        } else {

            return false;

        }

    });

});

<?php } ?>

 

function board_move(href)

{

    window.open(href, "boardmove", "left=50, top=50, width=500, height=550, scrollbars=1");

}

</script>

 

<script>

$(function() {

    $("a.view_image").click(function() {

        window.open(this.href, "large_image", "location=yes,links=no,toolbar=no,top=10,left=10,width=10,height=10,resizable=yes,scrollbars=no,status=no");

        return false;

    });

 

    // 추천, 비추천

    $("#good_button, #nogood_button").click(function() {

        var $tx;

        if(this.id == "good_button")

            $tx = $("#bo_v_act_good");

        else

            $tx = $("#bo_v_act_nogood");

 

        excute_good(this.href, $(this), $tx);

        return false;

    });

 

    // 이미지 리사이즈

    $("#bo_v_atc").viewimageresize();

 

    //sns공유

    $(".btn_share").click(function(){

        $("#bo_v_sns").fadeIn();

   

    });

 

    $(document).mouseup(function (e) {

        var container = $("#bo_v_sns");

        if (!container.is(e.target) && container.has(e.target).length === 0){

        container.css("display","none");

        }   

    });

});

 

function excute_good(href, $el, $tx)

{

    $.post(

        href,

        { js: "on" },

        function(data) {

            if(data.error) {

                alert(data.error);

                return false;

            }

 

            if(data.count) {

                $el.find("strong").text(number_format(String(data.count)));

                if($tx.attr("id").search("nogood") > -1) {

                    $tx.text("이 글을 비추천하셨습니다.");

                    $tx.fadeIn(200).delay(2500).fadeOut(200);

                } else {

                    $tx.text("이 글을 추천하셨습니다.");

                    $tx.fadeIn(200).delay(2500).fadeOut(200);

                }

            }

        }, "json"

    );

}

</script>

<!-- } 게시글 읽기 끝 -->

답변 4개

채택된 답변
+20 포인트

https의경우 js의 인클루드 또한 https형태 되어야해서 그부분을 먼저 체크하시는게 좋을것 같습니다. 

로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

파아랑님 죄송한데 어디 참고할만한 사이트가 있을까요?

댓글을 작성하려면 로그인이 필요합니다.

쪽지드렸습니다. 드림러님 확인하여주십시오 

로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

파아랑님,
https://sir.kr/request/50183 해당건 계약 이행 제대로 안하신거 해결은 언제 하실 건가요?
혹시나 이 댓글 보시면 연락주세요

로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

카톡주시겠어요? 상황을 보면 답이 가능할것같습니다.

단순한거면 처리해드릴께요 

로그인 후 평가할 수 있습니다

답변에 대한 댓글 1개

파아랑님 다시한번 정말감사합니다~~~~~꾸벅
좋은명절보내시기 바랍니다~~~~~~

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인
🐛 버그신고