我觉得我可能在这里忽略了一些东西。我想<span>
在<textarea>
. 我正在使用以下 jQuery 和 HTML:
jQuery:
$('#ws3 .textarea textarea[name="company-description"]').keyUp(function() {
var charLength = $(this).val().length;
$('span#charCount').html(charLength + ' of 250 characters used');
if($(this).val().length > 250)
$('span#charCount').html('<strong>You may only have up to 250 characters.</strong>');
});
HTML:
<div id="ws3" class="ws-section">
<label for="company-description">Describe your company for us</label>
<div class="textarea">
<textarea id="company-description" name="company-description" class="ws-required"></textarea>
</div>
<span id="charCount">charCount</span>
</div>
此外,此块后面的所有 jQuery 代码都不起作用,几乎就像浏览器已停止读取此代码块处的 .js 文件一样。