我有很多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请让我知道如何带来这个价值。
答案 0 :(得分:1)
你很亲密:
$(document).on('click', '.icon-plus', function(event) {
var idval = $(this).parents('.lastItm_Wrap').first().attr('id');
alert(idval);
});
答案 1 :(得分:0)
$(document).on('click', '.icon-plus', function(event) {
var idval = $('.lastItm_Wrap').attr('id');
alert(idval);
});
如果只有一个类
,请尝试直接使用该类访问