JQuery 轮播插件

发布于 2024-11-09 12:33:12 字数 508 浏览 0 评论 0原文

我在我的应用程序中使用 Carousel jquery 插件。我需要显示一个名字。它在 IE 中正确显示名称,但在 mozilla 中则不然。 这是我的代码:

function mycarousel_itemVisibleInCallbackAfterAnimation(carousel, item, idx, state) { 
   if (document.getElementById("Id") != null) {
      if (item.all) {
         if (item.all[1]) {
            if (item.all[1].childNodes) {
               document.getElementById("Id").innerHTML =
                     item.all[1].childNodes[0].alt;
            }
         }
      }
   }
};

有人可以帮助我吗?

I am using Carousel jquery plugin in my application. I need to display a name. It shows the name properly in IE, but not in mozilla.
Here is my code :

function mycarousel_itemVisibleInCallbackAfterAnimation(carousel, item, idx, state) { 
   if (document.getElementById("Id") != null) {
      if (item.all) {
         if (item.all[1]) {
            if (item.all[1].childNodes) {
               document.getElementById("Id").innerHTML =
                     item.all[1].childNodes[0].alt;
            }
         }
      }
   }
};

Can someone help me out.

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

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

发布评论

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

评论(1

梅窗月明清似水 2024-11-16 12:33:13

既然您已经有了 jQuery 参考,为什么不直接使用它呢。

function mycarousel_itemVisibleInCallbackAfterAnimation(carousel, item, idx, state) { 
   if(jQuery('#' + idx)[0] && jQuery(item.all[1]).children()[0]){
     jQuery('#' + idx).html( jQuery(jQuery(item.all[1]).children()[0]).attr('alt'));
   }
};

Since you already have jQuery reference, why don't you just use it.

function mycarousel_itemVisibleInCallbackAfterAnimation(carousel, item, idx, state) { 
   if(jQuery('#' + idx)[0] && jQuery(item.all[1]).children()[0]){
     jQuery('#' + idx).html( jQuery(jQuery(item.all[1]).children()[0]).attr('alt'));
   }
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文