jQuery - noConflict() method
jQuery - noConflict() method
How to use jQuery and other frameworks on the page at the same time?
jQuery and other JavaScript frameworks
As you have already learned, jQuery uses the $ symbol as shorthand for jQuery.
What if other JavaScript frameworks also use the $ symbol as a shorthand?
Some other JavaScript frameworks include: MooTools, Backbone, Sammy, Cappuccino, Knockout, JavaScript MVC, Google Web Toolkit, Google Closure, Ember, Batman, and Ext JS.
Some of these frameworks also use the $ symbol as a shorthand (just like jQuery). If you are using two different frameworks that are using the same shorthand symbol, it may cause the script to stop running.
The jQuery team took this issue into consideration and implemented the noConflict() method.
jQuery noConflict() method
The noConflict() method releases control of the $ identifier so that other scripts can use it.
Of course, you can still use jQuery by substituting the full name for the abbreviation:
我要变身了!
You can also create your own abbreviation. noConflict() returns a reference to jQuery that you can store in a variable for later use. Take a look at this example:
我要变身了!
If your jQuery code block uses $ abbreviation, and you don't want to change this shortcut, you can pass the $ symbol as a variable to the ready method. This way you can use the $ symbol inside the function - but outside the function, you still have to use "jQuery":
真的有惊喜,试试