直接关闭微信内置浏览器就行。
//关闭微信页面 function weixinClosePage() { if (typeof WeixinJSBridge == "undefined") { if (document.addEventListener) { document.addEventListener('WeixinJSBridgeReady', weixin_ClosePage, false); } else if (document.attachEvent) { document.attachEvent('WeixinJSBridgeReady', weixin_ClosePage); document.attachEvent('onWeixinJSBridgeReady', weixin_ClosePage); } } else { weixin_ClosePage(); } } function weixin_ClosePage() { WeixinJSBridge.call('closeWindow'); }
直接在你需要返回自定义菜单的页面中执行weixinClosePage()就行。
get it
我这边还有一种情况,从自定义菜单进入页面,点击返回到消息窗口,但是通过首页点击进去该页面要能正常返回首页,这个能实现吗
除了左上角“返回”按钮,没其他方法
主要是首页能实现我说的这种情况,但是其他页面就不行了!