is
英 [ɪz] 美 [ɪz]
vt.& vi.是(be的三单形式)
n.存在
jquery is()方法 语法
作用:is() 根据选择器、元素或 jQuery 对象来检测匹配元素集合,如果这些元素中至少有一个元素匹配给定的参数,则返回 true。
语法:.is(selector)
参数:
| 参数 | 描述 |
| selector | 字符串值,包含匹配元素的选择器表达式。 |
说明:与其他筛选方法不同,.is() 不创建新的 jQuery 对象。相反,它允许我们在不修改 jQuery 对象内容的情况下对其进行检测。这在 callback 内部通常比较有用,比如事件处理程序。
jquery is()方法 示例
<!DOCTYPE html>
<html>
<head>
<style>div { color:red; }</style>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<form><p><input type="checkbox" /></p></form>
<div></div>
<script>
var isFormParent = $("input[type='checkbox']").parent().is("form");
$("div").text("isFormParent = " + isFormParent);
</script>
</body>
</html>点击 "运行实例" 按钮查看在线实例
热门推荐
- 解决FastAPI异步测试中“Event loop is closed”错误
- 为什么运行composer install时会提示“Your lock file is out of sync”?
- php数据整理中怎么检测数组元素的数据类型php类型检测is*函数与严格模式结合
- composer 提示 "The requested PHP extension bcmath is missing" 如何安装?
- composer提示“The openssl extension is required”错误的解决方案
- composer 提示 "Your lock file is not up to date with the latest changes" 怎么解决?