通过单击子类获取类的父ID

时间:2019-12-01 11:53:51

标签: jquery html

我有四个<div>容器,如下所示:

 <div class="parentBox">
  <div class="childBox" id="20">
      <div>some content with in this div</div>
      <div>another div with more sontent</div>
  </div>
</div>

当我单击childBox div中的任意位置时,我想将childBox id放入jQuery变量中。我尝试了以下方法,这些方法使我undefined

 $('.parentBox').click(function (event) {
    var id = $(this).attr('id');
    console.log(id);
});

还尝试了这个,这给了我父母不是一个函数

var id = $(this).parent().attr('id');

尝试了一下,这在控制台日志中给了我空白

var id = event.target.id;

有人可以帮忙吗?

     $('.parentBox').click(function (event) {
        var id = $(this).attr('id');
        console.log(id);
        
        //does not work
        console.log($(this).parnet().attr('id'));
        
        //also does not work
        console.log(event.target.id);
    });
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="parentBox">
      <div class="childBox" id="20">
          <div>some content with in this div</div>
          <div>another div with more sontent</div>
      </div>
    </div>

3 个答案:

答案 0 :(得分:3)

如果在单击.childBox div时需要.childBox id,则可以将.childBox类的click事件挂钩:

$('.childBox').click(function (event) {
    var id = $(this).attr('id');
    console.log(id);
});

编辑:

如果您想通过.childBox事件访问.parentBox,则可以执行以下操作:

$('.parentBox').click(function (event) {
    var id = $(this).find('.childBox').attr('id');
    console.log(id);
});

动态添加子级时,最好将事件挂在父级或文档对象上,如下所示:

$(document).on('click', '.childBox' , function() {
  console.log($(this).attr('id'));
});

答案 1 :(得分:0)

尝试它应该可以工作

$(".parentBox").on('click', "div.childBox",
     function() {var myId = $(this).attr('id'); });

答案 2 :(得分:0)

您可以执行以下操作:

$('.parentBox').click(function (event) {
    var id = $($(this).children('div')[0]).attr('id');
    console.log(id);
});