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>

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


  • 相关阅读:
    iOS埋点统计
    iOS CrashLog Analysis
    ffmpeg for iOS
    Charles抓包http和https
    reveal查看任意APP
    TesseractOCR
    JSPatch
    Mac如何找到从AppStore下载的正版Xcode安装包、以及Xcode清理缓存
    reveal
    TestFlight
  • 原文地址:https://www.cnblogs.com/wuyaxing/p/6442984.html
Copyright © 2011-2022 走看看