理想的网站导航设计
我正在设计一个网站,我想在顶部有一个静态菜单,我想加载菜单下方用户要求的相应页面。但我不想重新加载整个页面,只应该加载菜单下面的部分。做到这一点的理想设计是什么?
I am designing a website and I want to have a static menu at the top and I want to load the corresponding page that the user asks for below the menu. But I don't want to reload the whole page, just the section below the menu should be loaded. What is the ideal design to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 jQuery 的 load 函数来做到这一点,将其应用到涵盖您想要替换的所有内容的 DIV,尽管这样做而不是常规页面有很多缺点:
You can do that with jQuery's load function, applying it to a DIV that covers all you want to replace, although doing that instead of regular pages has a number of disadvantages:
AJAX
http://www.w3schools.com/Ajax/Default.Asp
异步 Javascript 和XML,使用 XML 来传达请求和响应对象,可以是 HTML,因为 HTML 是 XML 的子集。
AJAX
http://www.w3schools.com/Ajax/Default.Asp
Asynchronous Javascript and XML, uses XML to communicate the request and response objects, can be HTML since HTML is a subset of XML.