<td width="162"><span class="required">*</span> Name:</td>
<td width="407">
<label>
<input id="store_name" class="text_field alnum" type="text" minlength="3"
maxlength="30" size="40" name="store_name" style="color: rgb(51, 51, 51);"/>
</label>
</td>
<td class="char_count_area" style="color: green;"/>
我有一些像这样的 jQuery 代码:
$('.text_field').each(function(){
$(this).keyup(function(){
$(this).parent().parent().parent().find('.char_count_area').html(remainingChars);
....
正如你所看到的,我试图以一种相当低效的方式char_count_area
到达。text_field
它有效,但如果我稍微改变一下桌子设计,它就会变得疯狂。我试过使用
$(this).closest('.char_count_area').html(remainingChars)
但它不起作用(字符不出现)。
我怎样才能做到这一点closest
?