關(guān)閉瀏覽器打開的H5頁(yè)面(當(dāng)前頁(yè)面)和微信瀏覽器打開的H5頁(yè)面
close() 方法用于關(guān)閉瀏覽器窗口。
在瀏覽器端我們經(jīng)常使用window.close();// 關(guān)閉當(dāng)前頁(yè)面
關(guān)閉微信內(nèi)瀏覽器打開的頁(yè)面:
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');
}