jQuery
实例;事件;性能;移动;基础
support
英 [səˈpɔ:t] 美 [səˈpɔ:rt]
vt.支持;支撑;帮助;维持
n.支撑;支持者;[数学]支集;支撑物
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
jquery jQuery.support属性 示例
<!DOCTYPE html> <html> <head> <script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").html("本浏览器能够创建 XMLHttpRequest 对象: " + jQuery.support.ajax); }); </script> </head> <body> <p></p> </body> </html>
点击 "运行实例" 按钮查看在线实例