天天看點

JQuery Mobile 學習筆記

主題

修改主題 data-theme

JQuery Mobile 學習筆記

源代碼

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
    <meta name="viewport" content="width=device-width,initial-scale=1" /> 
    <title></title>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
    <div data-role="page">
        <div data-role="header" data-theme="b">
            <h1>page header</h1>
        </div>
        
        <div data-role="content">
            <p>hello jquery mobile</p>
        </div>
        
        <div data-role="footer">
            <h4>page footer</h4>
        </div>
    </div>
</body>
</html>      
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
    <meta name="viewport" content="width=device-width,initial-scale=1" /> 
    <title></title>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
    <div data-role="page">
        <div data-role="header" data-theme="b">
            <h1>page header</h1>
        </div>
        
        <div data-role="content">
            <p>hello jquery mobile</p>
        </div>
        
        <div data-role="footer">
            <h4>page footer</h4>
        </div>
    </div>
</body>
</html>      

作者:

吉桂昕

出處:

http://www.cnblogs.com/jiguixin

我的新浪微網誌:

http://weibo.com/jiguixin

本文版權歸【吉桂昕】和部落格園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接配接,否則保留追究法律責任的權利。如果覺得還有幫助的話,可以點一下右下角的【推薦】,希望能夠持續的為大家帶來好的技術文章!想跟我一起進步麼?那就【關注】我吧。

下一篇: api認證簡介