• jQuery 安装


    jQuery 安装

    可以通过多种方法在网页中添加 jQuery。 您可以使用以下方法:

    (1)从 jquery.com 下载 jQuery 库

      有两个版本的 jQuery 可供下载:

    • Production version - 用于实际的网站中,已被精简和压缩。
    • Development version - 用于测试和开发(未压缩,是可读的代码)

    使用 HTML 的 <script> 标签引用它:

    <head> <script src="jquery-1.10.2.min.js"></script> </head>

    提示: 将下载的文件放在网页的同一目录下,就可以使用jQuery

    (2)从 CDN 中载入 jQuery,

    如果站点用户是国内的,建议使用百度、又拍云、新浪等国内CDN地址,站点用户是国外的可以使用谷歌和微软。

    菜鸟教程 CDN:

    <head> <script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"> </script> </head>

    百度 CDN:

    <head> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> </head>

    又拍云 CDN:

    <head> <script src="http://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.2.min.js"> </script> </head>

    新浪 CDN:

    <head> <script src="http://lib.sinaapp.com/js/jquery/2.0.2/jquery-2.0.2.min.js"> </script> </head>

    Google CDN:

    <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script> </head>

    Microsoft CDN:

    <head> <script src="http://ajax.htmlnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js"> </script> </head>

     

     

  • 相关阅读:
    Mysql数据库(三)Mysql表结构管理
    Mysql数据库(二)Mysql数据库管理
    Mysql数据库(一)数据库设计概述
    设计模式(二十三)Interpreter模式
    设计模式(二十二)Command模式
    设计模式(二十一)Proxy模式
    设计模式(二十)Flyweight模式
    python 全局变量
    python 装饰器
    python 文件读写
  • 原文地址:https://www.cnblogs.com/ximiaomiao/p/6856128.html
Copyright © 2020-2023  润新知