jQuery jQuery.support 属性

  • 定义和用法

    jQuery.support 属性包含表示不同浏览器特性或漏洞的属性集。
    该属性主要用于 jQuery 的内部使用。
  • 语法

    jQuery.support.propvalue
  • 参数

    参数 必需的 描述
    propvalue
    规定要测试的功能。这些测试包括:
    • ajax
    • boxModel
    • changeBubbles
    • checkClone
    • checkOn
    • cors
    • cssFloat
    • hrefNormalized
    • htmlSerialize
    • leadingWhitespace
    • noCloneChecked
    • noCloneEvent
    • opacity
    • optDisabled
    • optSelected
    • scriptEval()
    • style
    • submitBubbles
    • tbody
  • 实例

    下例演示了测试浏览器是否能创建 XMLHttpRequest 对象:
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>欢迎来到蝴蝶教程</title>
    //此版本是百度cdn 1.11.1,当然你可以使用更高的版本,从2.0版本以上的是不支持ie6-8的
    <script type="text/javascript" src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
    <script>
       $(document).ready(function(){
          $("p").html("这个浏览器可以创建 XMLHttpRequest 对象: " + jQuery.support.ajax);
       });
    </script>
    </head>
    <body>
       <p></p>
    </body>
    </html>                    
    
    尝试一下