https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html
一、过程:
--> 打开小程序webView1
--> webView1内的 H5 用 wx.miniprogram.navigateTo 跳转 webView2
--> 将小程序切到后台
--> 将小程序切回前台
PS:两个webView内的H5页面都监听了visibilitychange事件(document.addEventListener("visibilitychange", onVisibilityChange))
二、预期结果:
只有webView2内的H5会触发visibilitychange事件
三、实际结果:
webView1和webView2 同时 触发了visibilitychange事件
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。