使用「QR code 二維條碼」製作我的第二個手機網頁 使用「QR code 二維條碼」製作我的第二個手機網頁
原始碼 原始碼

<!DOCTYPE html>
<html>
<head>
 <title>作業二</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

 <meta name="viewport" content="width=device-width, initial-scale=1" />


        <link rel="stylesheet" href="jquery.mobile.min.css" />
    <script type="text/javascript" src="jquery-1.6.4.min.js"></script>
 <script type="text/javascript" src="jquery.mobile.min.js"></script>
</head>
<body>
<div data-role="page">
  <div data-role="header">
  <h1>10079533 胡曾俊傑 作業二</h1>
  </div>
  <div data-role="content">
    <p>jQuery Mobile是基於jQuery建立的框架,
    支援iOS、Android、BlackBerry、bada、
    Windows Phone、webOS、Symbian和
    MeeGo的Mobile網頁應用程式開發。</p> 
 <a href="#page2"  data-role="button">下一頁</a>
  </div>
  <div data-role="footer">
    <h1>胡曾俊傑</h1>
  </div>
</div>

<div data-role="page" id="page2" data-add-back-btn="true" data-back-btn-text="上一頁上一頁" data-theme="c">
  <div data-role="header">
  <h1>page2 page2</h1>
  </div>
  <div data-role="content">
    <p>網頁應用程式開發。</p>
  </div>
  <div data-role="footer">
  <h1>10079533 胡曾俊傑 作業二</h1>
  </div>
</div>