바로 스크랩하기.
그누보드의 경우 스크랩 할 때 버튼을 누르면 스크랩 팝업창이 뜨고
팝업창 내에서 다시 스크랩을 해야 스크랩이 됩니다.
그런 과정 없이 버튼만 눌렀을때 스크랩 하는 기능입니다.
view.skin.php에서 아래 구문을 추가. 해당 구문의 위치는 상관 없습니다
[code]
<form name="f_scrap_popin" action="<?php echo G5_BBS_URL?>/scrap_popin_update.php" method="post">
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
<input type="hidden" name="wr_id" value="<?php echo $wr_id ?>">
<input type="hidden" name="wr_content" value="">
</form>
<script type="text/javascript">
function scrap_submit() {
var param = $("form[name=f_scrap_popin]").serialize();
$.ajax({
url: g5_bbs_url+"/scrap_popin_update.php",
type: "POST",
data: param,
success:function(data){
//alert("성공");
console.log(data);
var a_comment = /<noscript>(([\s\S]+?[\s\S]))<\/p>/.exec(data);
if (a_comment != null)
{
var content = String(a_comment[1].trim());
content = content.substring(3,content.length);
alert(content);
}
},
error:function(data){
alert("error");
}
});
}
</script>
[/code]
view.skin.php에서 아래 구문을 찾아서
[code]
<?php if ($scrap_href) { ?><a href="<?php echo $scrap_href; ?>" target="_blank" class="btn btn_b03" onclick="win_scrap(this.href); return false;"><i class="fa fa-thumb-tack" aria-hidden="true"></i> 스크랩</a><?php } ?>
[/code]
[code]
<?php if ($scrap_href) { ?><a href="javascript:;" onclick="scrap_submit()" class="btn btn_b03"><i class="fa fa-thumb-tack" aria-hidden="true"></i> 스크랩</a><?php } ?>
[/code]
로 수정.
댓글 5개
게시판 목록
그누보드5 팁자료실
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 2635 | 5개월 전 | 598 | ||
| 2634 | 5개월 전 | 589 | ||
| 2633 |
|
6개월 전 | 500 | |
| 2632 | 6개월 전 | 558 | ||
| 2631 |
세르반데스
|
6개월 전 | 529 | |
| 2630 | 6개월 전 | 715 | ||
| 2629 | 6개월 전 | 401 | ||
| 2628 | 6개월 전 | 406 | ||
| 2627 |
이슈DEV
|
6개월 전 | 628 | |
| 2626 |
welcome
|
6개월 전 | 636 | |
| 2625 |
이슈DEV
|
6개월 전 | 441 | |
| 2624 | 6개월 전 | 399 | ||
| 2623 | 6개월 전 | 487 | ||
| 2622 | 6개월 전 | 340 | ||
| 2621 |
|
6개월 전 | 354 | |
| 2620 | 6개월 전 | 462 | ||
| 2619 | 6개월 전 | 457 | ||
| 2618 | 6개월 전 | 546 | ||
| 2617 | 6개월 전 | 668 | ||
| 2616 | 7개월 전 | 572 | ||
| 2615 | 7개월 전 | 400 | ||
| 2614 |
바닐라코드
|
7개월 전 | 721 | |
| 2613 | 7개월 전 | 587 | ||
| 2612 | 7개월 전 | 720 | ||
| 2611 | 7개월 전 | 954 | ||
| 2610 | 7개월 전 | 499 | ||
| 2609 | 7개월 전 | 644 | ||
| 2608 | 7개월 전 | 621 | ||
| 2607 | 7개월 전 | 567 | ||
| 2606 | 7개월 전 | 591 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기