jQuery获取点击对象的父级
2021-07-16 05:15
标签:jquer html dex .class jquery index ref 项目 超级玛丽 一、使用$(‘body‘).on(‘click‘,‘.index‘,function(event){})绑定事件时,例: 项目名称: 超级玛丽 for andriod 项目类型: 游戏开发 项目人员: andriod开发工程师 UI设计师 2017-6-15 点击class = "join"获取class="project-box"下的class="p-name": 二、常规方法获取点击对象的父元素 项目名称: 超级玛丽 for andriod 项目类型: 游戏开发 项目人员: andriod开发工程师 UI设计师 2017-6-15 点击class = "join"获取class="project-box"下的class="p-name": jQuery获取点击对象的父级 标签:jquer html dex .class jquery index ref 项目 超级玛丽 原文地址:http://www.cnblogs.com/detanx/p/jQuery_ClickGetParentNode.html
$(‘body‘).on(‘click‘,‘.index‘,function(event){
var target = event.target;
if(target.className === ‘join‘){
let projectName = $(target).parents(".project-box").find(".p-name").html();
console.log(projectName);
}
});
$(".join).onclick = function(){
$(this).parent().parent().parent().toggle();
}