jQuery 滚动到缩小
我从 插件站点 下载了最新的 jquery.scrollTo。缩小版本不起作用有明显的原因吗?使用完全相同的代码,控制台会抛出错误:
$.scrollTo 不是函数
有关信息,这是我唯一的声明:
$.scrollTo('-=600px', 400, { axis :'y' });
I downloaded the latest jquery.scrollTo from the plugins site. Is there an obvious reason why the minified version does not work? With the exact same code the console throws the error:
$.scrollTo is not a function
For info this is my only statement:
$.scrollTo('-=600px', 400, { axis:'y' });
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
缩小版本确实有效,请确保您正确包含它,例如您的服务器相对位置、权限等有效...尝试直接在浏览器中访问它。
您可以在此处查看工作演示,使用:http://demos.flesler.com/jquery/scrollTo/js/jquery.scrollTo-min.js ( 不要盗链,这只是一个演示,显示缩小版本的工作原理)
The minified version does work, make sure you're including it correctly, e.g. that your server relative location, permission, etc works...try accessing it directly in your browser.
You can see a working demo here using: http://demos.flesler.com/jquery/scrollTo/js/jquery.scrollTo-min.js (don't hotlink, this is just a demo showing the minified version works)
检查是否关闭;在每个陈述之后。它是可选的,但最小化使其成为必需的。
Check for the closing ; after each statement. It is optional but the minifization makes it required.