web-dev-qa-db-ja.com

入力フィールドの文字数を制限する

Jqueryを使用して、編集可能なdiv(またはフォーム入力)の文字数を制限します。

19
Firdous

入力フィールドについては、maxlength属性を使用できます。 divを探している場合は、次を確認してください。

        $(function() {

            $ ('#editable_div').keydown ( function (e) {
                //list of functional/control keys that you want to allow always
                var keys = [8, 9, 16, 17, 18, 19, 20, 27, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 144, 145];

                if( $.inArray(e.keyCode, keys) == -1) {
                    if (checkMaxLength (this.innerHTML, 15)) {
                        e.preventDefault();
                        e.stopPropagation();
                    }
                }
            });

            function checkMaxLength (text, max) {
                return (text.length >= max);
            }
        });

        <div id="editable_div" contentEditable="true" onclick="this.contentEditable='true';" >TEXT BEGIN:</div>

編集:タブと改行を無視するようにcheckMaxLength関数を書き換える必要があります

5

maxlengthタグでinputを使用する

<input type="text" maxlength="20" /> 
48
dku.rajkumar

この機能をサポートするブラウザのMaxlength属性。
Javascript-その他。

<input class="test-input" type="text" maxlength="12" />
<script>
$('.test-input').unbind('keyup change input paste').bind('keyup change input paste',function(e){
    var $this = $(this);
    var val = $this.val();
    var valLength = val.length;
    var maxCount = $this.attr('maxlength');
    if(valLength>maxCount){
        $this.val($this.val().substring(0,maxCount));
    }
}); 
</script>

http://jsfiddle.net/tvpRT/

20

これはあなたのために働くはずです。

HTML

<input type="text" name="myText" id="myText" data-maxlength="10" />

jQuery

$('#myText').keyup(validateMaxLength);

function validateMaxLength()
{
        var text = $(this).val();
        var maxlength = $(this).data('maxlength');

        if(maxlength > 0)  
        {
                $(this).val(text.substr(0, maxlength)); 
        }
}
9
JF Paris

JQueryを使用する場合は、自分で何かを記述するか、 this one などの既存のプラグインを使用できます。

しかし、私はdku.rajkumarに同意します... maxlength属性の使用の何が問題になっていますか?

<input type="text" maxlength="15" />

あなたが最大のJQueryファンeverであり、すべての入力フィールドにmaxlengthを一度に設定したい場合お気に入り:

$(document).ready(function() {
   $('input[type="text"]').attr({ maxLength : 15 });
});

ただし、このメソッド(JQueryの1つ)は、JavaScriptを(何らかの理由で)無効にしているユーザーには機能しません。 maxlengthタグのinput属性は、すべてのブラウザーのすべてのユーザーに対して機能します。

6
Jules

フォーム入力だとしましょう。
「maxlength」属性でそれを行うことができますが、「jQueryを使用する」と言うと、
こちらが解決策です。

$('input#limited').attr('maxlength', '3'); 

または、すべてのキー入力を確認できます

$('input#limited').keypress(function() {
     /*
     check for 3 or greater than 3 characters.
     If you check for only greater than 3, then it will let
     you write the fourth character because just before writing,
     it is not greater than three.
     */
     if($(this).val().length >= 3) {
        $(this).val($(this).val().slice(0, 3));
        return false;
    }
});
4
Sang
 $('#id').keypress(function(e) {
   var foo = $(this).val()
     if (foo.length >= 14) { //specify text limit
        return false;
        }
    return true;
 });
0
Hafsal Rh

「maxlength」という属性を使用してください。 w3 input で入力の属性の詳細を読むことができます

0
mkk