prototype 和jquery 冲突的解决办法

最近做项目遇到了一个问题,两个js框架相互冲突了,找了半天,终于找到了解决办法。

------------
2008-06-24
关于prototype与jquery 的一起协作问题

在项目中引用第三方的webEdit,由于此组件用到了prototype,   而我们对于ajax的处理是用jquery   Lib ,主要是基于jquery 优美的框架哲学,但在使用的过程进导致webedit不能使用,由于prototype与jquery都有$   ,应该是由此引起,因为以此找到一个篇关于此的解决方案

记录如下
PrototypeAndjquery


Back

     * Overview

jquery gets a lot of its inspiration from the power behind the Prototype library. This is immediately noticeable with jquery's use of the $() function, inspired by the Prototype function of the same name. However, there are some things that should be known about the Prototype and jquery interact, and how the $() behaves differently.
Using Prototype and jquery Together
只要先引入prototype再引入jquery,个人感觉就是作者自己说的,因为是Prototype给他灵感,所以重成了Prototype的部分内容,因此先jquery必将出现我们所不知道的错误.

To include both Javascript libraries, and have them work in unison, you will need to first include Prototype, then jquery. For example:

   <script src="prototype.js"></script>
   <script src=" http://jquery.com/src/latest/"></script>

Loading jquery first, then Prototype, will cause your code to break - as a reminder, jquery throws an exception saying: "You are overwriting jquery, please include jquery last." (If you see this error, that's what it means)
Differences in $()

A side-by-side comparison of how the $() function works *ONLY WHEN PROTOTYPE IS USED* would be best to explain the differences. If you're not using Prototype, please refer to the documentation, instead.

   $("pre")

Prototype: Looks for the element with an ID of pre, if found, returns it, otherwise returns null.

jquery: Looks for all elements with the Tag name of pre.

     * If none are found: It then looks for an element with an ID of pre, if one is found - it returns that element, if not, it returns a jquery object, with an empty set of matched elements.
     * If elements are found: jquery returns a jquery object, containing the all matched pre elements.

   $(DOMElement)

Prototype: Returns the DOMElement.

jquery: Attaches all of the jquery object methods to the DOMElement, then returns it. The result should still be usable by Prototype and jquery. Note: See the bottom of the page for more information on this.
What to do about $()?

Because the behavior of Prototype and jquery is different, when it comes to the $() function, it is recommended that you do one of two things:
Un-ambiguous Selectors

Always be explicit when you search by a single ID. For example, use this:

   $("#pre")

and not this, which is ambiguous:

   $("pre")

Doing that will solve any problems straight away.
Prototype Short-hand

If you want to continuing using the Prototype short-hand, you must keep one rule in mind: Never name any of your IDs the same as a DOM Element type, otherwise you will have strange results. For example:

   $("pre")

would work, if there were no pre elements in the page, but once one was added, your code would break. A better example is:

   $("body")

which will always break (since the body element is required).

In a nutshell: Either use smart un-ambiguous !IDs, or don't name your !IDs the same as element names.
Wrapping of DOM Elements

In order to support both Prototype and jquery users at the same time, returned DOM elements have additional jquery functions attached to them. It should be noted, however, that just because the original DOM Element is being returned, its original functions and properties should not be accessed directly, for example:

When using both Prototype and jquery $("wrap") will return a modified DOM Element, so if you were inclined to do:

   $("wrap").style.display = 'none';

That would work, but only when using Prototype. If you then, later, stopped using Prototype, that code would break. To be safe, you should only use jquery-sanctioned functions and terminology, for example:

   $("#wrap").hide();

would be the proper way of doing the above - it will always work, even if you are (or aren't) using Prototype.
Using Prototype and jquery Together (other solution)

If you need use jquery and also Prototype + Scriptaculous + ... , you need rename jquery $ function. For example:

<script src=" http://jquery.com/src/latest/"></script>
<script type="text/javascript">
     JQ = $;   //rename $ function
</script>
<script src="prototype.js"></script>

Then you can access to jquery function with JQ and for access to Prototype $ function use the normal name. For example:

<script type="text/javascript">
   JQ(document).ready(function(){
    JQ("#test_jquery").html("this is jquery");
    $("test_prototype").innerHTML="this is Prototype";
   });
</script>

NOTE: Be carefull with jquery plugins, you will need rename all $ references to JQ or other name.
原文地址: http://jackdraw.javaeye.com/blog/207314
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值