瀏覽器版本判斷

頁面引入:  
html

<script src="${ctx}/static/jquery/jquery-1.10.2.min.js"></script>
    <script src="${ctx}/static/jquery/jquery.browser.js"></script
jquery

頁面1:通常都在登入頁面。
瀏覽器

$(document).ready(function(){
    var bro=$.browser;
    if(bro.msie) {
        if(bro.version < 8.0) {
            //window.open('${ctx}/browerSupport');
            window.location.href='${ctx}/help/browerSupport';
        };
    }
});
</script>
spa


跳轉browerSupport頁面,提示:
htm

$(document).ready(function(){
    var brow=$.browser;
    var broInfo="您當前的瀏覽器爲:Microsoft Internet Explorer "+brow.version;
    $("#browerId").html(broInfo);
});
ip

相關文章
相關標籤/搜索