그누보드 질문 입니다.
본문
사진처럼 내선번호칸에는 작성하면 예:565 같이 들어가는데
요청사항 부분에 수정하려고 하니 안들어 가네요;;
<tr>
<th scope="row"><label for="wr_content">요청사항<strong class="sound_only">필수</strong></label></th>
<td class="wr_content border_r0" placeholder="예) 565">
<!--<textarea class="form-control" rows="10"></textarea>-->
<?php if($write_min || $write_max) { ?>
<!-- 최소/최대 글자 수 사용 시 -->
<p id="char_count_desc">이 게시판은 최소 <strong><?php echo $write_min; ?></strong>글자 이상, 최대 <strong><?php echo $write_max; ?></strong>글자 이하까지 글을 쓰실 수 있습니다.</p>
<?php } ?>
<?php echo $editor_html; // 에디터 사용시는 에디터로, 아니면 textarea 로 노출 ?>
<?php if($write_min || $write_max) { ?>
<!-- 최소/최대 글자 수 사용 시 -->
<div id="char_count_wrap"><span id="char_count"></span>글자</div>
<?php } ?>
</td>
</tr>
!-->
답변 2
<script>
$(document).ready(function() {
$('input[name="wr_content"]').attr('placeholder', '예) 565');
});
</script> 위 처럼 넣어 보세요.
가장 하단에 넣어 보세요.
답변을 작성하시기 전에 로그인 해주세요.