"JQuery Mobile 시작하기"의 두 판 사이의 차이

23번째 줄: 23번째 줄:
<html>
<html>
<head>
<head>
<title>다람쥐</title>
<title>안녕 친구들</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
31번째 줄: 31번째 줄:
<div data-role="page">
<div data-role="page">
     <div data-role="header">
     <div data-role="header">
         <h1>안녕 다람쥐야</h1>
         <h1>헤더</h1>
     </div>
     </div>
     <div data-role="content">
     <div data-role="content">
         <div id="banner">
         <div id="banner">
             <h2>다람쥐X</h2>
             <h2>배너</h2>
         </div>
         </div>
         <p>다람쥐 헌 쳇바퀴에 타고파.</p>
         <p>다람쥐 헌 쳇바퀴에 타고파.</p>
         <ul data-role="listview" data-inset="true">
         <ul data-role="listview" data-inset="true">
             <li><a href="./page1.html">다람쥐</a></li>
             <li><a href="#">안녕</a></li>
             <li><a href="./page2.html">쳇바퀴</a></li>
             <li><a href="#">친구들</a></li>
         </ul>
         </ul>
     </div>
     </div>
     <div data-role="footer">
     <div data-role="footer">
         <h4>jmnote.com</h4>
         <h4>푸터</h4>
     </div>
     </div>
</div>
</div>

2012년 2월 20일 (월) 09:10 판

1 example01.php

<!DOCTYPE html>
<meta charset="utf-8" />
<html lang="ko">
<head>
	<title>안녕 친구들</title>
	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
	<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
	<script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
</head>
<body>내용 없음</body>
</html>

2 example02.php

<!DOCTYPE html>
<meta charset="utf-8" />
<html>
<head>
	<title>안녕 친구들</title>
	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.css" />
	<script src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
	<script src="http://code.jquery.com/mobile/1.0a1/jquery.mobile-1.0a1.min.js"></script>
</head>
<body> 
<div data-role="page">
    <div data-role="header">
        <h1>헤더</h1>
    </div>
    <div data-role="content">
        <div id="banner">
            <h2>배너</h2>
        </div>
        <p>다람쥐 헌 쳇바퀴에 타고파.</p>
        <ul data-role="listview" data-inset="true">
            <li><a href="#">안녕</a></li>
            <li><a href="#">친구들</a></li>
        </ul>
    </div>
    <div data-role="footer">
        <h4>푸터</h4>
    </div>
</div>
</body>
</html>

3 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}