Web Sockets 目前在各个浏览器到终端支持性并不好, 只有IE 10+, FF 34+, Chrome 31+, Safari 7.1+, Android Browser 4.4+ 才得到支持。8 G! H s& [' Z
, I& o4 I8 b3 l( t6 y0 ~通过何种方式检测?比较简单到方式是直接判断全局对象中是否包含WebSocket对象即可: - $(document).ready(function() {- V+ ?+ b/ y5 b. U& J. N' v5 Q) R
- if( typeof(WebSocket) != "function" ) {
$ ?' y* C# {* I/ W9 w: E - $('body').html("<h1>Error</h1><p>Your browser does not support HTML5 Web Sockets. Try Google Chrome instead.</p>");/ l5 o5 x. I+ l4 L, y
- }2 R( l4 c2 m( |4 _8 S7 x
- })' L9 q" V7 i( j# s, z
复制代码 8 ?4 ~9 S/ m5 d% L
但是这种方法存在局限性。 在 Android 中,即使浏览器不支持 WebSocket ,但是它还是存在这个属性。
所以比较严谨的方式是: - if (typeof WebSocket != 'undefined') {1 K! I3 A! }, h' [ \
- /*supported*/ % [, M: [8 S3 g. m7 b2 `2 q9 T
- }
' K" o% e ~ |1 j, e0 C
4 F! N/ A0 l/ ~( W& b- //or! p) f7 m5 Y/ R+ C: ?% F& t/ G* K
- if (!!window.WebSocket && window.WebSocket.prototype.send) {
9 B8 m& c( a7 B$ l1 V s3 A, c - /*supported*/
0 B, [1 x( ? ~7 M6 r ] - }
复制代码
& k t/ V% |8 `' f) m |