jQuery Mobile 教程jQuery MobilejQuery Mobile 是创建移动 web 应用程序的框架。 jQuery Mobile 适用于所有流行的智能手机和平板电脑。 jQuery Mobile 使用 HTML5 和 CSS3 通过尽可能少的脚本对页面进行布局。 每章中的 TIY 实例通过我们的在线编辑器,您能够编辑代码,然后点击提交按钮来查看结果。 实例<div data-role="page" id="pageone"> <div data-role="header"> <h1>在此处写入标题</h1> </div> <div data-role="content"> <p>在此处写入正文</p> </div> <div data-role="footer"> <h1>在此处写入页脚文本</h1> </div> </div> 请点击“亲自试一试”按钮来查看结果。 |
|