그누보드의 게시판을 일반 html 메인 페이지에 넣고 싶을때 정보
그누보드의 게시판을 일반 html 메인 페이지에 넣고 싶을때본문
어떤 구문을 쓰면 가능 할가요??
추천
0
0
댓글 2개
AJAX로 로드 시키시는 방법이 있습니다..
<script src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type='text/javascript'>
function test() {
$.get("http://사이트 주소/bbs/board.php",
{
bo_table : "notice"
},
function(data,status) {
$("#board").html(data);
});
}
test();
</script>
<div id='board'>
</div>
<script src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type='text/javascript'>
function test() {
$.get("http://사이트 주소/bbs/board.php",
{
bo_table : "notice"
},
function(data,status) {
$("#board").html(data);
});
}
test();
</script>
<div id='board'>
</div>