2009年9月21日 星期一

判斷 瀏覽器 & 版本

1.判斷 IE 版本
isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
isIE7 = /msie|MSIE 7/.test(navigator.userAgent);

2.FF or IE
var d=ifrmae.contentDocument || ifrmae.contentWindow.document;

3.FF or IE8 is true
window.XMLHttpRequest

4.IE is true
window.ActiveXObject


PS:問號表達式:運算符號(?:)
var a="我是 a !"
// a 不是空(?) o=a , 要不(:) o="哈囉"
var o = a != null ? a : "哈囉";

沒有留言:

張貼留言