zoukankan      html  css  js  c++  java
  • jQuery——多库共存

    多库共存:jQuery占用了$ 和jQuery这两个变量。当在同一个页面中引用了jQuery这个js库,并且引用的其他库(或者其他版本的jQuery库)中也用到了$或者jQuery这两个变量,那么,要保证每个库都能正常使用,这时候就有了多库共存的问题。

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <script src="jquery-1.8.2.min.js"></script>
        <script src="jquery-1.11.1.js"></script>
        <script>
            jQuery(function () {
                //打印版本号。
                console.log($.fn.jquery);//1.11.1
                $.noConflict();//让1.11.1放弃$的使用权,这样1.8.2就会获得对$的使用权
                console.log($.fn.jquery);//1.8.2
                console.log(jQuery.fn.jquery);//1.11.1
            })
        </script>
    </head>
    <body>
    </body>
    </html>
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
        <script src="jquery-1.8.2.min.js"></script>
        <script src="jquery-1.11.1.js"></script>
        <script>
            jQuery(function () {
                console.log($.fn.jquery);//1.11.1
                var MrLv = $.noConflict(true);//让1.11.1放弃两个符号的使用权,同时定义一个新的使用权
                console.log($.fn.jquery);//1.8.2
                console.log(jQuery.fn.jquery);//1.8.2
                console.log(MrLv.fn.jquery);//1.11.1
            })
        </script>
    </head>
    <body>
    </body>
    </html>
  • 相关阅读:
    正则表达式
    虚拟机winXP试用期已过无法激活问题解决
    model.addattribute()的作用
    model.addAttribute() return @ResponseBody $ajax success data的关系
    bootStrap的使用
    【navicat】navicat导入导出数据库步骤
    【对比】mysql 与 oracle 区别
    oracle错误
    【备忘】船舶的几个吨位概念
    0731
  • 原文地址:https://www.cnblogs.com/wuqiuxue/p/8040365.html
Copyright © 2011-2022 走看看