解决jQuery中$定义与其他JS文件冲突的问题

作者: 坎肩儿 分类: jQuery 发布时间: 2011-07-29 10:16

jQuery 名称冲突

jQuery 使用 $ 符号作为 jQuery 的简介方式。

某些其他 JavaScript 库中的函数(比如 Prototype)同样使用 $ 符号。

jQuery 使用名为 noConflict() 的方法来解决该问题。

var jq=jQuery.noConflict(),帮助您使用自己的名称(比如 jq)来代替 $ 符号。

实例代码:

<html>
<head>
<script type=”text/javascript” src=”/jquery/jquery.js”></script>
<script type=”text/javascript”>
var jq=jQuery.noConflict();
jq(document).ready(function(){
  jq(“button”).click(function(){
    jq(“p”).hide();
  });
});
</script>
</head>

<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button type=”button”>Click me</button>
</body>
</html>

定义jq代替$。

相关文档:

ecshop的jquery,jqzoom,transport.js冲突 问题解决(麻烦版)