| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
- httpd-dav.conf
- httpd 2.2.32
- httpd-mpm.conf
- httpd.conf
- PHP 5.2 .ini
- jQuery
- MySQL 5.1.41
- mod_unique_id
- CentOS 6.10
- CentOS 6
- CentOS
- node.js
- Repository
- httpd-autoindex.conf
- python 3.5.10
- MySQL
- gcc update
- apache 연동
- vim color scheme
- epel repository
- httpd-default.conf
- Node.js 소스 설치
- unique_id
- python 3.X 소스 설치
- httpd-vhosts.conf
- httpd-info.conf
- PHP 5.2.17 .ini
- Mod_Security 룰 셋
- vimrc 옵션
- Node.js apache 연동
- Today
- Total
목록Web Development (21)
곰시기's
HTMLElement.prototype.remove_ = function () { this.parentNode.removeChild(this); }
// 이전 HTMLElement.prototype.beforeElement = function (ele) { this.insertAdjacentElement("beforebegin", ele); } // 이후 HTMLElement.prototype.afterElement = function (ele) { this.insertAdjacentElement("afterend", ele); }
HTMLElement.prototype.closestClass = function (className_) { var target = this; while (!target.classList.contains(className_)) { if ("body" === target.parentNode.tagName.toLowerCase()) { return false; } target = target.parentNode; } return target; }
function pageNav( $total_record, $page_scale, $thisPage ) { /* * $total_record : DB에 저장되어 있는 Row 수 COUNT한 값을 전달 받는다. * $page_scale : 한 page에 출력 될 글의 개수 * $nav_scale : page navigation 수 ex) 5면 >> 와 같은 형태로 출력 * $totalPage : 총 page 수 * $thisPage : 현재 page * $nav_start : page navigation의 시작 값 * $nav_final : page navigation의 종료 값 * $nav : navigation html * $disabledBtn : 현재 선택 페이지 표기 * $recordStart :..