通过web-view组件打开的html页面,为啥在ios里,点击页面中的“返回”,在三个不同的ios真机中测试过,无法返回到小程序的页面,在安卓系统中,都可以正常返回到小程序的页面,摘录主要代码:
1、引入:js
<script type="text/javascript" src="http://res2.wx.qq.com/open/js/jweixin-1.3.2.js"></script>
2、html页面中的“返回”按钮绑定click事件:
var btn = document.getElementById('returnBtn');
btn.onclick = function () {
alert("hello");//用于测试是否触发点击事件
wx.miniProgram.switchTab({url: '/pages/home/home'});
};
通过在js代码中加入alert语句,证实在苹果手机中,click事件触发了,但是就是不能正常返回到小程序。
解决了吗
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)