如何关闭微信内置浏览器

做微信开发中发现window.close失效,不能关闭浏览器,解决如下:

1
2
3
4
5
6
7
8
9
10
function closeWindow() {   
if (wx != undefined) {
wx.closeWindow();
}
else if (typeof(WeixinJSBridge) != "undefined") {
WeixinJSBridge.call('closeWindow');
} else {
window.close();
}
}