重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

微信公众号开发实现点击返回按钮就返回到聊天界面示例代码

时间:2020-09-04 21:00:09 作者:重庆seo小潘 来源:
本文分享了微信公众号开发实现点击返回按钮就返回到聊天界面的示例代码。需要的朋友一起来看下吧 话不多说,请看代码pushHistory();function pushHistory() { var state = {title: title,url: # }; window.history.pushState(state, title, #);}if (typeof w

本文分享了微信公众号开发实现点击返回按钮就返回到聊天界面的示例代码。需要的朋友一起来看下吧

话不多说,请看代码pushHistory();function pushHistory() { var state = {title: "title",url: "#" }; window.history.pushState(state, "title", "#");}if (typeof window.addEventListener != "undefined") { window.addEventListener("popstate", function (e) { WeixinJSBridge.call('closeWindow'); }, false);} else { window.attachEvent("popstate", function (e) { WeixinJSBridge.call('closeWindow'); });} pushHistory(); function pushHistory() {var state = {title: "title",url: "#"};window.history.pushState(state, "title", "#"); } $(function() {wx.config({debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。appId: '@ViewBag.AppID', // 必填,公众号的唯一标识timestamp: '@ViewBag.TimeStamp', // 必填,生成签名的时间戳nonceStr: '@ViewBag.NonceStr', // 必填,生成签名的随机串signature: '@ViewBag.Signature', // 必填,签名,见附录1jsApiList: ['checkJsApi','hideOptionMenu','scanQRCode','closeWindow'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2});wx.ready(function() {wx.hideOptionMenu();});if (typeof window.addEventListener != "undefined") {window.addEventListener("popstate", function(e) {wx.closeWindow();}, false);} else {window.attachEvent("popstate", function(e) {wx.closeWindow();});} });以上就是微信公众号开发实现点击返回按钮就返回到聊天界面示例代码的详细内容,更多请关注小潘博客其它相关文章!