jQuery Mobile 教程:工具栏

2024-10-29 04:28:02

1、创建页眉和页脚<div data-role="page"> <div data-role="header"> <h1>我的页眉</h1> </div> <div data-role="content"> <p>此处是内容...</p> </div> <div data-role="footer"> <h1>我的页脚</h1> </div></div>

jQuery Mobile 教程:工具栏

3、在页眉中向左侧添加按钮<div data-role="header"> <a href="#" data-role="button">首页</a> <h1>欢迎访问我的主页</h1></div>

jQuery Mobile 教程:工具栏

5、带有按钮的页脚<div data-role="footer"> <a href="#" data-role="button" data-icon="plus">转播到新浪微博</a> <a href="#" data-role="button" data-icon="plus">转播到腾讯微博</a> <a href="#" data-role="button" data-icon="plus">转播到QQ空间</a> </div>

jQuery Mobile 教程:工具栏

7、带有水平分组按钮的页脚<div data-role="footer" class="ui-btn"> <div data-role="controlgroup" data-type="horizontal"> <a href="#" data-role="button" data-icon="plus">转播到新浪微博</a> <a href="#" data-role="button" data-icon="plus">转播到腾讯微博</a> <a href="#" data-role="button" data-icon="plus">转播到QQ空间</a> </div> </div>

jQuery Mobile 教程:工具栏
猜你喜欢