Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- 오블완
- DBMS
- ANTIFRAGILE
- docker build
- codeium
- 데이터내보내기
- 컬렉션프레임워크
- JPA
- analytics4
- java
- 명령어
- 도커이미지
- db종류
- JPQL
- macvlan
- docker push
- gtihub
- git branch 삭제
- spring
- 애널리틱스4
- pat발급
- git pat
- 11월순위
- 르세라핌
- 티스토리챌린지
- IntelliJ
- docker
- 자바
Archives
- Today
- Total
hanker
JavaScript - DataTables 사용법 본문
반응형
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
<link rel="stylesheet" href="https://cdn.datatables.net/t/bs-3.3.6/jqc-1.12.0,dt-1.10.11/datatables.min.css"/>
</head>
<body>
<table id="boardTable" class="table table-bordered">
<thead>
<tr>
<th>NO</th>
<th>제목</th>
<th>작성자</th>
<th>조회수</th>
<th>작성일</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<script src="https://cdn.datatables.net/t/bs-3.3.6/jqc-1.12.0,dt-1.10.11/datatables.min.js"></script>
<script>
$(function(){
$("#boardTable").DataTable();
});
</script>
</body>
</html>
$("#테이블아이디).DataTable();
- dataTables 기본설정
반응형
'JavaScript' 카테고리의 다른 글
JQuery - 선택자에 변수 넣기 (0) | 2020.12.16 |
---|---|
JS - github api를 사용하여 git commit.message 불러오기 (0) | 2020.11.10 |
JavaScript - DataTables 파일 다운로드 (0) | 2020.10.05 |
JavaScript - 체크박스 다중선택 value값 (0) | 2020.08.21 |
JavaScript - a태그를 이용한 (서버)파일 다운로드 (0) | 2020.08.14 |