如何将 NoConflict 与以下脚本一起使用?
如何编写 Jquery.与以下 Jquery 脚本不冲突。我正在使用这个 Jquery 在我的页面上滑动图像。如何使用与以下脚本不冲突?
<script type="text/javascript">
$(document).ready(function () {
$("#waterwheel-carousel-default").waterwheelCarousel();
$("#waterwheel-carousel-higharch").waterwheelCarousel({
startingWaveSeparation: -90,
waveSeparationFactor: .7,
centerOffset: 10,
startingItemSeparation: 120,
itemSeparationFactor: .9,
itemDecreaseFactor: .75
});
});
</script>
How Can I Write Jquery.No Conflict With The Following Jquery Script. I am Using this Jquery to Slide images on my page. How Can I use No conflict with the following Script ?
<script type="text/javascript">
$(document).ready(function () {
$("#waterwheel-carousel-default").waterwheelCarousel();
$("#waterwheel-carousel-higharch").waterwheelCarousel({
startingWaveSeparation: -90,
waveSeparationFactor: .7,
centerOffset: 10,
startingItemSeparation: 120,
itemSeparationFactor: .9,
itemDecreaseFactor: .75
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
文档中对此进行了解释:
http://api.jquery.com/jQuery.noConflict/
It's explained in the documentation:
http://api.jquery.com/jQuery.noConflict/
noConflict 通常用于当您需要将另一个库与 jquery 一起使用时,这样两者就不会发生冲突。来自 jQuery 文档:
所以除非你使用另一个带有 jquery 的库,否则我认为你不需要 noconflict。
noConflict is typically used when you need to use another library with jquery so the two dont clash. From jQuery docs:
So unless youre using another library with jquery i dont think you need noconflict.
好吧,您应该为 jquery 创建另一个“快捷方式”:
在此之后,将所有
$
符号替换为现在指向 jquery 的变量名称 ($j
)。另一种方法是将 jquery 代码写入函数并传递 jquery 引用 (
$
) 作为参数:well, you should make another "shortcut" to jquery :
after this, replace all your
$
signs with the name of the variable that points to jquery now ($j
).Another approach would be to write your jquery code into a function and pass the jquery reference (
$
) as an argument :