现在位置: 首页 > JavaScript 参考手册 > 正文

HTML DOM Node isSupported() 方法

元素对象参考手册 元素对象

实例

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

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

输出结果:

true

尝试一下 »

定义和用法

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


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

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


语法

node.isSupported(feature,version)

参数

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

返回值

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

技术细节

DOM 版本 Core Level 2 Node Object


元素对象参考手册 元素对象