<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;"/>
J'ai un code jQuery qui va comme ceci: Comme vous pouvez le voirTraversant td/tr avec le plus proche de jquery()
$('.text_field').each(function(){
$(this).keyup(function(){
$(this).parent().parent().parent().find('.char_count_area').html(remainingChars);
....
, je suis en train d'atteindre char_count_area
de text_field
d'une manière assez inefficace manière. Cela fonctionne, mais il devient fou si je modifie légèrement le design de la table. J'ai essayé d'utiliser
$(this).closest('.char_count_area').html(remainingChars)
mais il ne fonctionne pas (les caractères ne semblent pas).
Comment puis-je y parvenir en utilisant closest
?
ok merci. un problème - parfois j'en ai un autre
Questions connexes