我正在使用 asp.net mvc 框架。在我的应用程序中,我想要一个母版页和多个子页。如果加载了任何一个页面,则应加载所有子页面。假设我有 4 个子页面,我想在母版页中有链接 1 2 3 ..。如果我单击任何一个链接,则相关页面必须立即可用,而无需向服务器请求页面。
任何人都可以帮助或告诉最好的方法是什么?
我正在使用 asp.net mvc 框架。在我的应用程序中,我想要一个母版页和多个子页。如果加载了任何一个页面,则应加载所有子页面。假设我有 4 个子页面,我想在母版页中有链接 1 2 3 ..。如果我单击任何一个链接,则相关页面必须立即可用,而无需向服务器请求页面。
任何人都可以帮助或告诉最好的方法是什么?
Load the default view then use AJAX to bring in the rest of the pages while the user is reading the first one. That's going to get you the best performace compromise for what you're trying to do. Loading all X pages to begin with would be very slow.
您可以使用 javascript 预先加载所有内容而不显示它吗?