input에 datepicker 달력 날짜 넣기
write.skin.php 상단에 추가
[code]
include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
[/code]
write.skin.php 상단에 추가
[code]
<script>
$(function(){ //달력
$("#wr_1").datepicker({changeMonth: true, changeYear: true, dateFormat: "yy-mm-dd", showButtonPanel: true, yearRange: "c-99:c+99", maxDate: "+3650d"});
});
$(function(){ //달력
$("#wr_2").datepicker({changeMonth: true, changeYear: true, dateFormat: "yy-mm-dd", showButtonPanel: true, yearRange: "c-99:c+99", maxDate: "+3650d"});
});
</script>
[/code]
write.skin.php 원하는 위치에 추가
[code]
<div class="write_div">
시작 <input type="text" name="wr_1" value="<?php echo $wr_1 ?>" id="wr_1" class="frm_input" size="10" required placeholder="시작 날짜">
마감 <input type="text" name="wr_2" value="<?php echo $wr_2 ?>" id="wr_2" class="frm_input" size="10" required placeholder="마감 날짜">
</div>
[/code]
다들 아시겠지만 혹 모르시는분을 위해 남겨봅니다^^;
댓글 15개
이리 쉽게 알려주시니 감사합니다
<?php
include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
?>
<script type="text/javascript">
$(function(){ //달력
$(".datepicker").datepicker({changeMonth: true, changeYear: true, dateFormat: "yy-mm-dd", showButtonPanel: true, yearRange: "c-99:c+99", maxDate: "+3650d"});
});
</script>
<input name="wr_1" value="<?php echo $wr_1; ?>" class="datepicker">
<input name="wr_2" value="<?php echo $wr_2; ?>" class="datepicker">
찾던자료입니다 .감사합니다.
와! 감사합니다. ^^^^^
게시판 목록
그누보드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 | 7개월 전 | 668 | ||
| 2616 | 7개월 전 | 572 | ||
| 2615 | 7개월 전 | 400 | ||
| 2614 |
바닐라코드
|
7개월 전 | 722 | |
| 2613 | 7개월 전 | 587 | ||
| 2612 | 7개월 전 | 720 | ||
| 2611 | 7개월 전 | 954 | ||
| 2610 | 7개월 전 | 499 | ||
| 2609 | 7개월 전 | 644 | ||
| 2608 | 7개월 전 | 621 | ||
| 2607 | 7개월 전 | 567 | ||
| 2606 | 7개월 전 | 591 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기