專案中判斷瀏覽器型別的方法

2021-09-29 15:43:35 字數 625 閱讀 5778

專案中判斷客戶端型別的方法

1.在utils檔案檔案下的建立auth.js ,在**中export 出判斷方法

export

function

getdevicetype()

if(isios)

}else

return devicetype

}

2.引用

方法一:在main.js中引入,在專案中直接以$方法呼叫

引入:import

from

'@/utils/auth'

例項:vue.prototype.$getdevicetype= getdevicetype

在專案中呼叫:$getdevicetype ===

'pc'

// 輸出 true || false

方法二:直接在所需要的頁面中引入

在script中 引入 :import

from

'@/utils/auth'

在方法中呼叫 :getdevicetype()

==='pc'

// 輸出 true || false

判斷瀏覽器型別

1 2 描述 判斷瀏覽器型別 3 編寫 littleqiang w 4 日期 2016.1.5 5 版本 v1.1 6 78 判斷當前瀏覽型別 9function browsertype else if fieversion 8 else if fieversion 9 else if fiever...

判斷瀏覽器型別

var browser useragent window.n igator.useragent.tolowercase if msie firefox opera chrome netscape d d d.test useragent else if version d d d.safari te...

js判斷瀏覽器型別

現實情況時,有時需要根據瀏覽器型別,進行一些css之類的不同處理。第一種,只區分瀏覽器,不考慮版本 複製 如下 function mybrowser 判斷是否opera瀏覽器 if useragent.indexof firefox 1 判斷是否firefox瀏覽器 if useragent.ind...