很简单的问题。为什么这不起作用:
$('.box').click(function() {
//$(this).removeClass('nw_hidden'); //this works
var el = $(this).find('.nw_div')[0];
el.removeClass('nw_hidden'); //this not
}
很简单的问题。为什么这不起作用:
$('.box').click(function() {
//$(this).removeClass('nw_hidden'); //this works
var el = $(this).find('.nw_div')[0];
el.removeClass('nw_hidden'); //this not
}