jQuery Mobile 教程:工具栏

2025-10-27 16:14:00

1、创建页眉和页脚

<div data-role="page">

  <div data-role="header">

    <h1>我的页眉</h1>

  </div>

  <div data-role="content">

    此处是内容...

  </div>

  <div data-role="footer">

    <h1>我的页脚</h1>

  </div>

</div> 

jQuery Mobile 教程:工具栏

2、在页眉中添加按钮

<div data-role="header">

    <a href="#" data-role="button" data-icon="home">首页</a>

    <h1>欢迎访问我的主页</h1>

    <a href="#" data-role="button" data-icon="search">搜索</a>

  </div>

jQuery Mobile 教程:工具栏

3、在页眉中向左侧添加按钮

<div data-role="header">

  <a href="#" data-role="button">首页</a>

  <h1>欢迎访问我的主页</h1>

</div>

jQuery Mobile 教程:工具栏

4、在页眉中向右侧添加按钮

<div data-role="header">

    <h1>欢迎访问我的主页</h1>

    <a href="#" data-role="button" class="ui-btn-right" data-icon="search">搜索</a>

  </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 教程:工具栏

6、带有居中对齐按钮的页脚

 <div data-role="footer" class="ui-btn">

    <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 教程:工具栏

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢