Solutions to conflicts between the jquery Library and other JS libraries)
Source: Internet
Author: User
There are many JS libraries, and each has its own strengths. Like me, I like jquery, but I will also use other JS libraries, such as Yui and DWR. However, they sometimes make little conflict with each other, which is really a headache. The reason is that their global object definitions conflict, especially the variable "$", which is almost a hundred percent involved. What should I do? Look at me! Overload the $ function. Using jquery. noconflict (), you can use the $ function to distinguish the overlapping parts from other JS libraries. Example: JS Code <SCRIPT src = "prototype. JS "> </SCRIPT> <SCRIPT src =" jquery. JS "> </SCRIPT> <SCRIPT> jquery. noconflict (); // use jquery via jquery (...) Jquery (document). Ready (function () {jquery ("Div"). Hide () ;}); // use prototype with $ (...), Etc. $ ('someid '). style. display = 'none'; </SCRIPT> remember to use jquery after loading all JS libraries. noconflict () is reloaded, such as prototype and jquery In the example. Of course, we can also choose not to use its default namespace. For example, I like to use $ J () instead of jquery (). JS Code var $ J = jquery. noconflict (); $ J (document). Ready (function () {$ J ("Div"). Hide ();});
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.