Perfect solution for jquery symbol $ with other JavaScript libraries, framework conflicts _jquery

Source: Internet
Author: User

There is a large number of JavaScript development frameworks, some of which use $ as the invocation symbol, which may lead to conflicting with each other, and jquery can solve this problem by discarding the $ right when jquery imports, and then $ by other frameworks, so that you can avoid function calls with the same name With no longer conflict.

jquery uses the Noconflict method to discard the name of the $ invocation, which is then written by jquery instead of $.

For example: Alert ($ (' #message '). Val ());

Must be modified to alert (jQuery (' #message '). Val ());

JQuery to work correctly.

<script src= "Other_lib.js" ></script>
<script src= "Jquery.js" ></script>
< Script>
 $.noconflict ();
 jquery (' #message ') will then be invoked only in jquery
 . Val ();
</script>

You can also redefine the $ to call

<script src= "Other_lib.js" ></script>
<script src= "Jquery.js" ></script>
< Script>
$.noconflict ();
jquery (document). Ready (function ($) {
 //Code that uses JQuery ' s $ can follow here.
});
Code that uses the other library ' s $ can follow.
</script>

Change to J as call symbol

var j = jquery.noconflict ();
 
Do something with JQuery
J ("Div p"). Hide ();
 
Do something with another library ' s $ ()
$ ("content"). Style.display = "None";

The above perfect solution to the jquery symbol $ and other JavaScript library, framework conflict is the small series to share all the content of everyone, hope to give you a reference, but also hope that we support the cloud habitat community.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.