我无法弄清楚为什么我的 JavaScript 不能正常工作。它使用 j Query 并且应该选择所有文本区域标签,然后为每个文本区域计算输入的字符数,然后在达到最大长度后不允许用户再输入,还显示字符计数器在每个文本区域框下。它所做的只是显示剩余的字符,但在每次按下按键后不会减少,并且在达到最大长度时也不会停止。它也不会选择所有文本区域,它只选择它找到的第一个。
这是我的 TextAreaCounter.js
$(document).ready(function){
var $texts = $('textarea[maxlength]');
$texts.each(function){
$var $this = $(this),
max = $(this).attr('maxlength'),
textId = $(this)attr.('id'),
$parent = $this.parent(),
countId = textId+'-count';
$div = $('<div>Characters Remaining: </div>').addClass('count-down').insertAfter($this);
$input = $('<input></input>').attr({
type:"text",
readOnly: "readOnly",
value: max,
id: countId
}).css({
width: "25px"
marginTop: "5px"
marginBottom: "10px"
}).addClass('readOnly').appendTo($div);
$this.on({
keyup: function(){
val = $this.val(),
countVal = $('#'+countId).val(),
if(val.length > max){
$this.val(val.substr(0,max));
alert('Max length exceeded: ' +max);
return false;
}else{
$('#'+countId).val(max-val.length);
}
},
blur: function(){
val=$this.val();
if(val.length > max){
$this.val(val.substr(0,max));
alert('Max length exceeded: ' +max);
return false;
}else{
$('#'+countId).val(max-val.length);
}
}
});
});
});
当我添加一些未在此处的代码中显示的警报时,它表明它没有通过 keyup 事件到达 this.on 部分。我将此外部 js 文件包含到一个 jsp 文件中,该文件是我的页面制作并包含我的文本区域。我还向 textarea 元素添加了一个 id 和 maxlength 属性。任何帮助都会非常感谢。