11. 테이블
페이지 정보
작성자 관리자 댓글 0건 조회 1,331회 작성일 22-01-11 15:02본문
11. 테이블
실습 : jMobile21.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>제이쿼리 모바일 연습</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<div data-role="page">
<div data-role="header" data-position="fixed">
<h1>테이블</h1>
</div>
<div role="main" class="ui-content">
<table data-role="table" class="ui-responsive table-stroke" data-mode="columntoggle" data-column-btn-text="더보기">
<thead>
<th data-priority="3">제목1</th><th data-priority="1">제목2</th><th data-priority="1">제목3</th><th data-priority="2">제목4</th>
</thead>
<tbody>
<tr>
<td>내용1</td><td>내용2</td><td>내용3</td><td>내용4</td>
</tr>
<tr>
<td>내용1</td><td>내용2</td><td>내용3</td><td>내용4</td>
</tr>
</tbody>
</table>
</div>
<div data-role="footer" data-position="fixed">
<h1>powered by jQueryMobile.com</h1>
</div>
</div>
</body>
</html>
댓글목록
등록된 댓글이 없습니다.