我正在尝试学习jQuery,我有以下标记
在div中,我有两个文本日期和描述以及两个按钮编辑和删除.
当我单击编辑按钮时,我想获得该div的日期和描述
在这里我试图使用parents()
选择器,如何closest()
在这里使用选择器,如果当前标记不可能请建议我如何继续closest()
选择器.
$(document).ready(function() {
//If i click on edit button . I want to select the corresponding date and description .How can we do that?
$(".taskTemplate .edit").on('click', function(event) {
editTask(event.target);
});
});
function editTask(node) {
var date = $(node).parents('.taskTemplate').find('.date').html();
alert(date);
}
205-10-09
description of task
done
2015-11-19
description of task2
done
请帮忙
谢谢