
js中实现history路由
要根据访问路径的不同,动态呈现不同HTML内容,可以使用js中的vue-router库。具体实现步骤如下:
const routes = [{
name: 'PageA',
path: '/a',
meta: {
template: '/subpages/page-a.html'
}
}, {
name: 'PageB',
path: '/b',
meta: {
template: '/subpages/page-b.html'
}
}];const router = new VueRouter({ mode: 'history', routes: routes });router.beforeEach(function (to, from, next) {
// 移除旧页面
$('#route-view').empty();
// 加载新页面
$("#route-view").load(to.meta.template);
next(true);
});window.$router = router;
<button id="menuA" onclick="$router.push({ name: 'PageA' })">切换到 A</button>
<button id="menuB" onclick="$router.push({ name: 'PageB' })">切换到 B</button>注意:History Mode需要后端Web服务进行配置,否则刷新页面会出现404错误。
以上就是如何使用 Vue-router 在 JS 中实现动态 HTML 页面切换?的详细内容,更多请关注php中文网其它相关文章!
HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号