不同浏览器判断

来源:互联网 发布:淘宝新店货源 编辑:程序博客网 时间:2024/05/24 06:13
//根据不同的浏览器给下拉框设置不同的宽度
    if (navigator.userAgent.indexOf('Firefox') >= 0){
    //alert('你是使用Firefox')
    document.getElementById('pid1').style.width='148px';
    }else if (navigator.userAgent.indexOf('Safari') >= 0){
    //alert('你是使用谷歌')
    document.getElementById('pid1').style.width='171px';
    }else{
    //alert('你是使用其他的浏览器浏览网页!')
    document.getElementById('pid1').style.width='152px';
    }
原创粉丝点击