通過Jscript中@cc_on 語句識別IE瀏覽器及版本的代碼

來源:互聯網
上載者:User

啟用條件編譯支援。
@cc_on 備忘
@cc_on 語句啟用指令碼引擎中的條件編譯。
強烈推薦在注釋中使用 @cc_on 語句,以使不支援條件編譯的瀏覽器將您的指令碼視為有效文法而接受它:
/*@cc_on*/
// The remainder of the script.或者,在注釋外的一個 @if 或 @set 語句也將啟用條件編譯。
要求
版本 3
請參見
參考
@if...@elif...@else...@end 語句
@set 語句
複製代碼 代碼如下:
/*@cc_on
@if (@_jscript_version > 5.7)
document.write("You are using IE8+");
@elif (@_jscript_version == 5.7 && window.XMLHttpRequest)
document.write("You are using IE7");
@elif (@_jscript_version == 5.6 || (@_jscript_version == 5.7 && !window.XMLHttpRequest))
document.write("You are using IE6");
@elif (@_jscript_version == 5.5)
document.write("You are using IE5.5");
@else
document.write("You are using IE5 or older");
@end
@*/

概念
條件編譯變數
其他資源
條件編譯
IE的@cc_on條件編譯

1: alert("瀏覽器版本為:"+sSuffix)

用來判斷瀏覽器的版本很好用
var b = /*@cc_on!@*/false; 其中/*@cc_on ..... @*/
之間的部分可以被ie識別並作為程式執行,同時啟用ie的條件編譯。 最常用的變數是@_jscript_version:js版本,最後一位是ie主要版本號
樣本:

複製代碼 代碼如下:
var sSuffix = ( /*@cc_on!@*/false ) ? 'ie' : 'gecko' ;
/*@cc_on alert("顯示瀏覽器版本號碼:"+@_jscript_version) @*/
alert(@_jscript_version)
alert("瀏覽器版本為"+sSuffix)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.