编辑下面的代码:【加编码】
<html> <head> <link rel="stylesheet" href="https://libs.baidu.com/jquerymobile/1.4.2/jquery.mobile.min.css"> <script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script src="https://libs.baidu.com/jquerymobile/1.4.2/jquery.mobile.min.js"></script> </head> <body> <div data-role="page" id="pageone"> <div data-role="header"> <h1>此处是页面标题</h1> </div> <div data-role="content" data-theme="e"> <p>此处是页面内容。</p> <a href="#" data-role="button">按钮</a> <p>默认地,页面的子元素会继承应用主题的父元素的样式 - 在这么情况下,上面的按钮会被自动赋予的 data-theme 为 "e"。</p> <p>如需人工添加按钮的样式,请在链接中添加 data-theme 属性:</p> <a href="#" data-role="button" data-theme="a">按钮</a> <a href="#" data-role="button" data-theme="b">按钮</a> <a href="#" data-role="button" data-theme="c">按钮</a> </div> <div data-role="footer"> <h1>页脚文本</h1> </div> </div> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂