각종 브라우저 닫기 페이지 구현

1503 단어
자세히 보기
위챗 닫기


    wx.config({
        debug:     false,
        appId:     '<?php echo $signPackage["appId"];?>',
        timestamp: '<?php echo $signPackage["timestamp"];?>',
        nonceStr:  '<?php echo $signPackage["nonceStr"];?>',
        signature: '<?php echo $signPackage["signature"];?>',
        jsApiList: [
            'closeWindow'
        ]
    });
    wx.ready(function () {
        document.querySelector('#binding_submit').onclick = function () {
            wx.closeWindow();
        }
    });

IE, Firefox 종료
function f_close(){
    if (navigator.userAgent.indexOf("MSIE") > 0) {
        if (navigator.userAgent.indexOf("MSIE 6.0") > 0) {
            window.opener = null; window.close();
        } else {
            window.open('', '_top'); window.top.close();
        }
    } else if (navigator.userAgent.indexOf("Firefox") > 0) {
        window.location.href = 'about:blank ';
        //window.history.go(-2);
    } else {
        window.opener = null;
        window.open('', '_self', '');
        window.close();
    }
}

 ss

좋은 웹페이지 즐겨찾기