Rain's Blog

Mac 资料汇总

From: Tyrael:

安装 ruby navtive extension失败解决方法

sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/

Mac
Comments

jQuery Mobile - Page

Pages & Dialogs

JQM中,Page物理上是指一个data-role为page的节点(通常是div,下面称为Page节点),逻辑上是指一个用于显示的Screen(类似于Android中的Activity)。典型结构如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
<div data-role="page" id="pageId">
  <div data-role="header">
      <h1>Header</h1>
  </div>

  <div data-role="content">
      <!-- content here -->
  </div>

  <div data-role="footer">
      <!-- footer here -->
  </div>
</div>
Read on →
Comments