jQuery 滑块和 jQuery 灯箱不能一起工作

发布于 2024-10-30 02:39:05 字数 425 浏览 1 评论 0原文

我有一个 jquery 滑块和一个 jquery 灯箱。我希望它们都能在我的网站上同时工作。但我收到错误。那么有什么办法可以做到吗?

http://www.highesthits.com/wp-content/uploads /2011/02/fbox.js

http ://nivo.dev7studios.com/scripts/nivo-slider/jquery.nivo.slider.pack.js

I have a jquery slider and a jquery lightbox. I want both of them to work simultaneously in my site. But i am getting an error. So is there any way to do it?

http://www.highesthits.com/wp-content/uploads/2011/02/fbox.js

http://nivo.dev7studios.com/scripts/nivo-slider/jquery.nivo.slider.pack.js

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挽梦忆笙歌 2024-11-06 02:39:05

jQuery 和 Lightbox 都使用 $.

要同时使用两者而不发生冲突,请使用以下代码将 jQuery 中的 $ 更改为其他内容:(请注意 $jQ 可以是任何内容)

var $jQ = jQuery.noConflict();

现在,在编写 jQuery 文件时,在通常使用 $ 的地方使用 $jQ

// JavaScript Document
var $jQ = jQuery.noConflict();
 $jQ(document).ready(function(){
   //function on links <a> 
   $jQ("a").click(function(event){
     //add a class to your html
     //<p class="hideMe">
     $jQ(".hideMe").hide("slow");
     event.preventDefault();
   });
 });//end document ready function

Both jQuery and Lightbox use $.

To use both together without conflict, change the $ in jQuery to something else using the following code: (note that $jQ can be anything)

var $jQ = jQuery.noConflict();

Now, when writing your jQuery file use $jQ wherever you would normally use $

// JavaScript Document
var $jQ = jQuery.noConflict();
 $jQ(document).ready(function(){
   //function on links <a> 
   $jQ("a").click(function(event){
     //add a class to your html
     //<p class="hideMe">
     $jQ(".hideMe").hide("slow");
     event.preventDefault();
   });
 });//end document ready function
暮凉 2024-11-06 02:39:05

这是对我有用的:

插件:

  • jQuery Lightbox For Native Galleries
  • Nivo Slider for WordPress

我通过删除第 32 行使其工作:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>

来自位于 \plugins\nivo-slider-for-wordpress\ 的 nivoslider4wp-shop.php

我希望有帮助。

Here is what worked for me:

Plugins:

  • jQuery Lightbox For Native Galleries
  • Nivo Slider for WordPress

I made it work by removing line 32:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>

from nivoslider4wp-shop.php located in the \plugins\nivo-slider-for-wordpress\

I hope that helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文