如何获得$(this)选择器的子级?
要获取jQuery中$(this)选择器的子级,请使用find()
带有each()
method的方法。首先让我们看看如何添加jQuery:
示例
您可以尝试运行以下代码来获取$(this)选择器的子代:
<html><head>
<title>jQuery Example</title>
<script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
//在div上设置点击处理程序
$("body").off("click", "#mydiv").on("click", "#mydiv", function() {
//查找图像
$(this).find("img").each(function() {
var img = this;
});
});
</script>
<style>
#mydiv {
vertical-align: middle;
background-color: #Ffff76;
cursor: pointer;
padding: 20px;
}
</style>
</head>
<body>
<div id="mydiv">
<img src="/green/images/logo.png" width="300" height="100"/>
</div>
</body>
</html>
以上是 如何获得$(this)选择器的子级? 的全部内容, 来源链接: utcz.com/z/359475.html