Davis.js &滚动到
我正在使用 Davis.js 和 Ariel Flesler 的 scrollLTo 插件。我试图让窗口滚动到页面上的 div:
var app = Davis(function () {
this.get('/products', function (req) {
$(window).scrollTo( '#products', 800 );
})
})
app.start();
这不起作用。有什么想法吗?
I'm using Davis.js and and Ariel Flesler's scrolLTo plugin. I'm trying to have the window scrollTo a div on my page:
var app = Davis(function () {
this.get('/products', function (req) {
$(window).scrollTo( '#products', 800 );
})
})
app.start();
This is not working. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否确保运行该路由时页面上存在 id 为“products”的元素?
很难用如此少的信息尝试提供答案,您是否有一个易于重新运行的简化测试用例。
我想不出戴维斯不能与 scollTo 合作的任何原因。
Have you made sure that an element with id 'products' is on the page when that route is ran?
It is difficult to try and provide an answer with so little information, do you have a simplified test case that is easy to rerun.
I can't think of any reason why Davis wouldn't work well with scollTo.