HTML DOM Node isSupported() 方法


HTML DOM Node isSupported() 方法

实例

按钮元素支持判断版本2.0内核特性:

var item=document.getElementsByTagName("BUTTON")[0];  
item.isSupported("Core","2.0");

输出结果:

true

试一试 »

定义和用法

isSupported() 方法用于判断当前节点是否支持某个特性。

浏览器支持

所有主要浏览器都支持 isSupported 方法

注意: Internet Explorer 8 及更早IE版本不支持该方法。

语法

_node_.isSupported( _feature_ , _version_ )

参数

参数 类型 描述
_feature_ String 必须。定义了你想要检查是否支持的特性
_version_ String 可选。定义了你想检查是否支持的版本。

返回值

类型 描述
Boolean 如果支持该特性返回 true, 否则返回false。

技术细节

DOM 版本 Core Level 2 Node Object