JQuery 简单滑块超时问题
我有一个名为 slideMe()
的函数,我需要为每个滑块链接延迟几秒钟来启动该函数。
jquery 版本是 1.4.2
代码是:
$(document).ready(function(){ var img_id; var clicked; function slideMe(img_id){ $('.slider-menu-item').css('color','#fff'); $('#'+img_id).css('color','#EBE1B9'); $('.slider-img').hide(); $('#slider-img-'+img_id).fadeIn(600); }; $.each($('.slider-menu-item'),function(){ img_id = $(this).attr("id"); setTimeout("slideMe()",900); console.log(img_id) }); $('.slider-menu-item').live('click',function(){ img_id = $(this).attr("id"); clicked = 1; slideMe(img_id); }); });//end document.ready
但是在控制台日志中我收到错误消息:
slideMe 未定义
我该怎么办?
I have a function called slideMe()
and I need to launch that with delay of some seconds for each slider links.
jquery version is 1.4.2
code is:
$(document).ready(function(){ var img_id; var clicked; function slideMe(img_id){ $('.slider-menu-item').css('color','#fff'); $('#'+img_id).css('color','#EBE1B9'); $('.slider-img').hide(); $('#slider-img-'+img_id).fadeIn(600); }; $.each($('.slider-menu-item'),function(){ img_id = $(this).attr("id"); setTimeout("slideMe()",900); console.log(img_id) }); $('.slider-menu-item').live('click',function(){ img_id = $(this).attr("id"); clicked = 1; slideMe(img_id); }); });//end document.ready
but in console logs I receive error that says:
slideMe is not defined
How I can do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 document.ready 处理程序之外定义
slideMe
函数。另外,最好直接将方法传递给 setTimeout 而不是使用字符串。此外,slideMe
方法需要一个参数,因此请确保传递它:You need to define the
slideMe
function outside of the document.ready handler. Also it would be better to pass directly the method to setTimeout instead of using strings. Also theslideMe
method expects an argument so make sure you pass it:尝试使用
slideMe=function(){...}
而不是function slipMe(){...}
try
slideMe=function(){...}
instead offunction slideMe(){...}