zoukankan      html  css  js  c++  java
  • 微信公众号监听返回事件

     $(function(){
            if (window.history && window.history.pushState) {
                window.addEventListener("popstate", function (e) {  //回调函数中实现需要的功能
                    // alert("我监听到了浏览器的返回按钮事件啦");
                    window.location.href = 'index.html?id=' + F_EmployeeId + '&AppId=' + localStorage.getItem('AppId');  //在这里指定其返回的地址
                }, false);

                !function () {

                    var state = {
                        title: "title",
                        url: "#"
                    };
                    window.history.pushState(state, "url", "#");
                }();

            }

        });

  • 相关阅读:
    01.Markdown学习
    微信小程序开发基础
    如何在本地搭建微信小程序服务器
    Golang | 报错
    Golang | 扩展
    Golang | 基础
    Golang | 基础
    Golang | 基础
    Chrome——书签同步码云
    Rustlings_structs
  • 原文地址:https://www.cnblogs.com/zhouxiaobai/p/11935200.html
Copyright © 2011-2022 走看看