我正在寻找解决方案。有一些相同类型的列表元素。在li中,Container是一个带日期输入的跨度。我想补充一点:每个内容改变li之间的div(在我的例子中是日期)。
我试试这个,但它不起作用。
if (jQuery("#rs_events_details span b").html() == jQuery((this).next(".rs_event_details span b")).html()){
return "hallo";
} else {
return "tschau";
}
答案 0 :(得分:0)
试试这个 .clear {明确:既};
$('#rs_events_details span b').on('click',function(){
$("#target_div").addClass('clear');//note: replace #target_div with your respective divs
});