jQuery---$충돌 해결 방안

3597 단어
$충돌 해결 방안
 
다른 js 파일을 만나도 $로 함수를 포장합니다.jQuery를 뒤에 놓고 $의 제어권을 놓을 수도 있고, 원래의 $를 문자로 바꿀 수도 있습니다. 예를 들어 $$또는 jQuery
 
    //jQuery  $    
    $$ = $.noConflict();

 
DOCTYPE html>
<html lang="zh-CN">

<head>
  <meta charset="UTF-8">
  <title>Titletitle>

  <script src="itcast.js">script>
  <script src="jquery-1.12.4.js">script>

  <script>

    console.log($);

    //jQuery  $    
    $$ = $.noConflict();

    // jQuery(function () {
    // });

    $$(function () {

    });



  script>
head>

<body>

body>

html>

좋은 웹페이지 즐겨찾기