4

我无法弄清楚为什么我的 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 属性。任何帮助都会非常感谢。

4

3 回答 3

2

哦,伙计 - 如果你能做到这一点,为什么你需要上面的代码:http: //jsfiddle.net/btyCz/

有限的演示 http://jsfiddle.net/jnXEy/(我已将限制设置为 20)随意玩耍。

请让我知道我是否错过了任何事情,但以下内容应该会有所帮助:)

您可以随时检查长度以限制它。

代码

$('#myInput').keyup(function() {
    $('#charCount').text( this.value.replace(/{.*}/g, '').length );
});​

HTML

<textarea id="myInput"></textarea> <br>
Counter: <span id="charCount"></span>​
于 2012-08-07T04:49:42.257 回答
1

你应该通过

http://www.mediacollege.com/internet/javascript/form/limit-characters.html

限制文本区域中的字符

限制字符数量的简单方法是

<textarea maxlength="50">
Enter text here
</textarea>

有关更多数据,请访问

http://www.w3schools.com/html5/att_textarea_maxlength.asp

于 2012-08-07T05:09:07.527 回答
0

您的代码有很多语法错误。现在试试这个:

$(document).ready(function () { // bracket was missing here...
    var $texts = $('textarea[maxlength]');
    $texts.each(function () { // bracket was missing here...
        var $this = $(this), // incorrect variable declaration here...
        max = $this.attr('maxlength'),
        textId = $this.attr('id'), // incorrect method call here...
        $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", // missing comma here...
            marginTop: "5px", // missing comma here...
            marginBottom: "10px"
        }).addClass('readOnly').appendTo($div);

        $this.on({
            keyup: function () {
                var val = $this.val(),
                countVal = $('#' + countId).val(); // must have semicolon here...
                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 () {
                var 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);
                }
            }
        });
    });
});

http://jsbin.com/uzohuv/3

于 2012-08-07T05:01:32.860 回答