jQuery is() 方法
实例
如果 <p> 的父元素是 <div> 元素,就弹出提示:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").click(function(){
if ($("p").parent().is("div")) {
alert("p 的父级是 div");
}
});
});
</script>
</head>
<body>
<div>
<p>单击这里以查询其父元素是否是 div 元素。</p>
</div>
</body>
</html>
定义与用法
is()
方法检查所选元素之一是否与 selectorElement 匹配。
语法
$(selector).is(selectorElement,function(index,element))
参数 | 描述 |
---|---|
selectorElement | 必填。指定要与当前元素集匹配的选择器表达式、元素或 jQuery 对象。如果给定参数中至少有一个匹配项,则返回 true,否则返回 false |
function(index,element) | 可选。指定要为选定元素组运行的函数
|