jQueryMobile基础知识

1.jQueryMobile概念

jQuery Mobile 是用于创建移动 Web 应用的前端开发框架。
jQuery Mobile 可以应用于智能手机与平板电脑。

2.jQueryMobile的下载

http://jquerymobile.com/download/

3.jQueryMobile的使用

简单的页面显示


<html>
<head>

<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">

<script src="http://code.jquery.com/jquery-1.11.3.min.js">script>

<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">script>
head>
<body>
<div data-role="page">
  <div data-role="header">
    <h1>欢迎来到我的主页h1>
  div>
  <div data-role="main" class="ui-content">
    <p>我现在是一个移动端开发者!!p>
  div>
  <div data-role="footer">
    <h1>底部文本h1>
  div>
div>
body>
html>

4.jQuery Mobile 事件

触摸事件 - 当用户触摸屏幕时触发
滑动事件 - 当用户上下滑动时触发
定位事件 - 当设备水平或垂直翻转时触发
页面事件 - 当页面显示,隐藏,创建,加载或未加载时触发

例如:触摸事件


<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js">script>
<script src="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js">script>
<script>
$(document).on("pagecreate","#pageone",function(){
  $("p").on("tap",function(){
    $(this).hide();
  });                       
});
script>
head>
<body>

<div data-role="page" id="pageone">
  <div data-role="header">
    <h1>tap 事件h1>
  div>

  <div data-role="main" class="ui-content">
    <p>啦啦啦,我会消失。p>
    <p>啦啦啦,我会消失。p>
    <p>啦啦啦,我也会消失。p>
  div>

  <div data-role="footer">
    <h1>页脚文本h1>
  div>
div> 
body>
html>

你可能感兴趣的:(学习)