Jquery - 为什么在我添加这些行后 JS 就死了?
我试图在 jcarousel 中执行回调,在图像变得可见后它会触发此函数。
唉,当我尝试它时,它就停止了 js 的工作,并且没有任何反应。
谁能指出可能出了什么问题吗?
干杯,
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
easing: 'backout',
animation: 1000,
vertical: true,
scroll: 1,
itemVisibleInCallback: {onBeforeAnimation: itemVisibleIn},
});
});
function itemVisibleIn(){
$("#gallerydescription").html( $(this).attr("alt")); },
function () {
$("#gallerydescription").html("");
}
);
});
}
</script>
Im trying to do a callback in jcarousel where after an image becomes visible it fires this function.
alas soon as i try it it stops the js working and nothing occurs.
can anyone point out what could be wrong?
cheers,
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
easing: 'backout',
animation: 1000,
vertical: true,
scroll: 1,
itemVisibleInCallback: {onBeforeAnimation: itemVisibleIn},
});
});
function itemVisibleIn(){
$("#gallerydescription").html( $(this).attr("alt")); },
function () {
$("#gallerydescription").html("");
}
);
});
}
</script>
http://sorgalla.com/projects/jcarousel/ <-- documentation
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我大概明白这里有什么问题了。它应该有效:
OK, I probably see what's problem here. It should work: