微信小程序设置手机网页返回至指定页面
时间:2024年04月24日
/来源:网络
/编辑:佚名
设置手机网页返回至指定页面代码:
pushHistory();
window.addEventListener("popstate", function(e) {
window.location = '需返回的页面路径'
}, false);
function pushHistory() {
var state = {
title: "title",
url: "#"
};
window.history.pushState(state, "title", "#");
}
pushHistory();
window.addEventListener("popstate", function(e) {
window.location = '需返回的页面路径'
}, false);
function pushHistory() {
var state = {
title: "title",
url: "#"
};
window.history.pushState(state, "title", "#");
}
新闻资讯 更多
- 【建站知识】微信小程序设置手机网页返回至指定页面04-24
- 【建站知识】人人商城多商户无法上传图片04-24
- 【建站知识】微信X5内核调试入口04-24
- 【建站知识】uni-app新项目出现的问题 Browserslist: caniuse-lite is outdated. Please run: npx browserslist@latest --update04-24
- 【建站知识】FastAdmin Shopro商城安装04-24
- 【建站知识】IDEA打开就闪退或关闭详细解决办法04-24
- 【建站知识】IDEA启动闪退生成replay_pid进程号.log怎么办?04-24
- 【建站知识】记录配置PhpStorm+Xdebug+chrome插件Xdebug helper的调试环境04-23