그누보드 특정 게시판 본문에 javascript(자바스크립트) 를 보이도록 할때
페이지 정보
본문
특정 게시판의 본문에 javascrip(자바스크립트)가 노출되어야 할때 사용하는 방법입니다.
관리자만 글 게시가 가능할때 사용하면 좋습니다.
예를 들면 글작성에 아래 내용을 넣고 저장을 하면
글저장할때 넣은 모습
<a href=javascript:test=window.open('http://www.ilogen.com/d2d/delivery/invoice_search_popup.jsp?viewType=type2&invoiceNum=xxxxxx','출고현황','width=735,height=670,left=100,top=100,scrollbars=yes,resizable=yes,directories=no,location=no,menubars=no,status=yes');void(0)>
<img src="delivery_search_botton.gif" border=0>
내용보기에서 보여지는 모습
<a>
<img src="delivery_search_botton.gif" border="0" alt="delivery_search_botton.gif" /></a>
아래의 코드를 적용하면 글작성할때 넣은 모습이 온전하게 보여집니다.
그누보드5 / bbs / view.php 내용중
$view['content'] = conv_content($view['wr_content'], $html);
를 아래와 같이 변경합니다.
if ($bo_table=="게시판이름") { // 해피정닷컴 추가 2019-12-31
$view['content'] = $view['wr_content'];
} else {
$view['content'] = conv_content($view['wr_content'], $html);
}
관리자만 글 게시가 가능할때 사용하면 좋습니다.
예를 들면 글작성에 아래 내용을 넣고 저장을 하면
글저장할때 넣은 모습
<a href=javascript:test=window.open('http://www.ilogen.com/d2d/delivery/invoice_search_popup.jsp?viewType=type2&invoiceNum=xxxxxx','출고현황','width=735,height=670,left=100,top=100,scrollbars=yes,resizable=yes,directories=no,location=no,menubars=no,status=yes');void(0)>
<img src="delivery_search_botton.gif" border=0>
내용보기에서 보여지는 모습
<a>
<img src="delivery_search_botton.gif" border="0" alt="delivery_search_botton.gif" /></a>
아래의 코드를 적용하면 글작성할때 넣은 모습이 온전하게 보여집니다.
그누보드5 / bbs / view.php 내용중
$view['content'] = conv_content($view['wr_content'], $html);
를 아래와 같이 변경합니다.
if ($bo_table=="게시판이름") { // 해피정닷컴 추가 2019-12-31
$view['content'] = $view['wr_content'];
} else {
$view['content'] = conv_content($view['wr_content'], $html);
}
댓글목록
등록된 댓글이 없습니다.