jQuery is() 方法


jQuery is() 方法


实例

如果 <p> 的父元素是 <div> 元素,弹出提示信息:

if ($("p").parent().is("div")) {  
alert("p 的父元素是 div");  
}

试一试

定义和使用

is() 方法用于查看选择的元素是否匹配选择器。

语法

$( _selector_ ).is( _selectorElement,_ function _(index_ , _element)_ )
参数 描述
_selectorElement_ 必须。选择器表达式,根据选择器/元素/jQuery 对象检查匹配元素集合,如果存在至少一个匹配元素,则返回 true,否则返回 false
function( _index_ , _element_ ) 可选。指定了选择元素组要执行的函数。 * index - 元素的索引位置 * element - 当前元素 ( "this" 选择器也可以使用 )