zoukankan      html  css  js  c++  java
  • jQuuery Mobile 移动端开发框架

    jQuery Mobile 是创建移动 web 应用程序的框架。

    jQuery Mobile 适用于所有流行的智能手机和平板电脑。

    jQuery Mobile 使用 HTML5 和 CSS3 通过尽可能少的脚本对页面进行布局。

    必须先引入jQuery

    http://jquerymobile.com  官网下载

    <head>
    <link rel=stylesheet href=jquery.mobile-1.3.2.css>
    <script src=jquery.js></script>
    <script src=jquery.mobile-1.3.2.js></script>
    </head>

    CDN

    <head>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
    <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
    </head>

    ----------------------------------------------
    ----------------------------------------------


  • 相关阅读:
    Vue.js的组件化思想--下
    Vue.js的组件化思想--上
    Git常用命令总结
    vue基础语法
    ES6基础语法
    Vue笔记
    Vue的基本使用(一)
    es6的基本用法
    Django-admin管理工具
    Django组件-中间件
  • 原文地址:https://www.cnblogs.com/wuyaxing/p/6442984.html
Copyright © 2011-2022 走看看