JQuery 轮播插件
我在我的应用程序中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
既然您已经有了 jQuery 参考,为什么不直接使用它呢。
Since you already have jQuery reference, why don't you just use it.