Jquery ScrollTo 网页 Google 索引
我想建立一个网站,当您转到下一页时, 页面滑至下一页。
我可以使用 Jquery.ScrollTo 但随后我必须加载所有页面。 http://demos.flesler.com/jquery/scrollTo/ 我认为这对于谷歌索引来说不是一个好的结果。
最好的方法是什么?我考虑用ajax加载下一页。
I would like to build a website where when you go to the next pag,
the page slides to the next.
I can use Jquery.ScrollTo but then i have to load all the pages at ones.
http://demos.flesler.com/jquery/scrollTo/
This is not a good result for the google index I think.
What is the best way to do this? I think about loading the next page with ajax.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要包括用于导航的 HTML 链接,确保您的网站可以在未打开 JavaScript 的浏览器上运行,并在 JavaScript 或 AJAX 中使用真实的链接,例如:
[a href=”ajax.htm?sn=products” onClick=”navigate('ajax.html#sn=products′);返回 false”]产品[/a]
you need includes having HTML links for your navigation, ensuring that your site works on browsers that do not have JavaScript turned on, and using real links in your JavaScript or AJAX, such as:
[a href=”ajax.htm?sn=products” onClick=”navigate(‘ajax.html#sn=products′); return false”]products[/a]
查看已实现此功能的 JQuery 移动框架。他们使用 Ajax 页面加载和 CSS3 转换来将新页面滑入视图,但您的页面 HTML 使用可由搜索蜘蛛使用的普通标签。
http://jquerymobile.com/demos/1.0a2/#docs /pages/docs-pages.html
Check out the JQuery mobile framework which has this implemented. They use Ajax page loads and CSS3 transitions to slide new pages into view but your page HTML uses normal tags which can be used by a search spider.
http://jquerymobile.com/demos/1.0a2/#docs/pages/docs-pages.html