jquery Moblie入門—hello world的範例程式碼學習

來源:互聯網
上載者:User

1、需要運行JQuery Mobile 行動裝置 App頁面,需要下載JQuery Mobile 3個相關外掛程式檔案(有多版本),jquery.mobile-1.2.0.min.css、jquery-1.8.3.min.js、jquery.mobile-1.2.0.min.js,JQuery Mobile官網地址:http://jquerymobile.com
2、將外掛程式檔案載入到頁面中,注意它們的載入順序,語句如
複製代碼 代碼如下:
<link href="Css/jquery.mobile-1.2.0.min.css" rel="Stylesheet" type="text/css"/>
<script src="Js/jquery-1.8.3.min.js" type"text/javascript"></script>
<script src="Js/jquery.mobile-1.2.0.min.js" type="text/javascript"></script>

3、Hello World的範例程式碼如下
複製代碼 代碼如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<meta name="viewport" content="width=device-width,initial-scale=1"/> //設定頁面的寬度與行動裝置的螢幕寬度相同
<link href="Css/jquery.mobile-1.2.0.min.css" rel="Stylesheet" type="text/css"/>
<script src="Js/jquery-1.8.3.min.js" type"text/javascript"></script>
<script src="Js/jquery.mobile-1.2.0.min.js" type="text/javascript"></script>
</HEAD>
<BODY>
<div id="page1" data-role="page">
<div data-role="header"><h1>JQuery Moblie</h1></div>
<div data-role="content" class="content"><p>Hello World!</p></div>
<div data-role="footer"><h1>工作室著作權</h1></div>
</div>
</BODY>
</HTML>

4、由於JQuery Mobile 已經全面支援HTML5結構,因此,<body>主體元素代碼也可以修改為:
複製代碼 代碼如下:
<BODY>
<section id="page1" data-role="page">
<header data-role="header"><h1>JQuery Moblie</h1></header>
<div data-role="content" class="content"><p>Hello World!</p></div>
<footer data-role="footer"><h1>工作室著作權</h1></footer>
</section>
</BODY>

5、為了更好地在PC端瀏覽JQuery Mobile 頁面在移動終端的執行效果,可以下載Opera移動模擬器,:http://cn.opera.com/,預覽:

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.