2014年2月28日 星期五

jQuery 解決 IE11 不支援 $.browser.msie

$.browser.msie 在 IE11 好像不管用,因此我上網找了一下解決方法,如果你的 web 需要判斷『如果是 IE,那就怎樣怎樣的...』,那麼你應該會用到 $.browser.msie,需要判斷到 IE11的話,只要再補上 (!!navigator.userAgent.match(/Trident\/7\./)) 的判斷就可以了:


1
2
3
if ($.browser.msie || (!!navigator.userAgent.match(/Trident\/7\./))) {
    //do something :)
}


沒有留言:

張貼留言

若你看的文章,時間太久遠的問題就別問了,因為我應該也忘了... XD

Vue multiselect set autofocus and tinymce set autofocus

要在畫面一進來 focus multiselect 的方式: 參考: https://jsfiddle.net/shentao/mnphdt2g/ 主要就是在 multiselect 的 tag 加上 ref (例如: my_multiselect), 另外在 mounted...