私はこのテキストエリアを持っています:
<textarea name="comment" id="comment" cols="75" rows="5" class="txtarea"></textarea>
および表示文字制限のこのスパン:
<span style="display:none" id="chars_left">1000</span>
テキストエリアボックスでフォーカス/ぼかしを行うときに、スパンを表示/非表示にする必要があります。このjquery関数を作成しましたが、これはうまくいきません。何が問題ですか?私のニーズに合わせてjqueryを動作させる方法は?
<script>
$('textarea').focus(function(){
jQuery(this).find('#chars_left').show();
})
// this function will hide divs when you leave that textarea
$('textarea').blur(function(){
jQuery(this).find('#chars_left').hide();
})
</script>