安卓客户端的bug:两个页面互相跳转两次后,就不能再打开页面了
这个bug不是小程序的,也不是小游戏的!!!前面一定要我选,我就选了小程序。
试了几台安卓手机,都出现这个bug
a网页打开b网页,再从b网页打开a网页,接着再从a网页打开b网页,这时候在b网页里就打不开a网页了,
简单点说就是:a->b->a->b->这里就不能再打开a了
testa.html 页面代码:
<!DOCTYPE html> < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < meta http-equiv = "X-UA-Compatible" content = "ie=edge" > < title >a页面</ title > </ head > < body > < a href = "/testb.html" >a页面,跳转到b</ a > </ body > </ html > |
testb.html 页面代码:
<!DOCTYPE html> < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < meta http-equiv = "X-UA-Compatible" content = "ie=edge" > < title >b页面</ title > <!-- <script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script> --> </ head > < body > < a href = "/testa.html" >b页面,跳转到a</ a > </ body > </ html > |