如何在单击加号图标时获取类属性值

时间:2015-09-22 14:50:29

标签: jquery

我有很多div类的TreeMenu_Content,因为它是一个动态屏幕。

点击加号图标时。

我的问题是,是否可以获取lastItm_Wrap id值?

我试过

$(document).on('click', '.icon-plus', function(event) {

    var idval = $(this).closest('div').find('.lastItm_Wrap').attr('id');

    alert(idval);
});

是否可以在不使用 TreeMenu_Content

的情况下获取 lastItm_Wrap属性ID

请让我知道如何带来这个价值。

http://jsfiddle.net/bxbnkq64/

2 个答案:

答案 0 :(得分:1)

你很亲密:

$(document).on('click', '.icon-plus', function(event) {
    var idval = $(this).parents('.lastItm_Wrap').first().attr('id');
    alert(idval);
});

JSFiddle

答案 1 :(得分:0)

$(document).on('click', '.icon-plus', function(event) {

    var idval = $('.lastItm_Wrap').attr('id');

    alert(idval);
});

如果只有一个类

,请尝试直接使用该类访问

http://jsfiddle.net/bxbnkq64/2/