1

textareaに入力された文字数をチェックし、これを使用すると入力を停止するコードがあります-$(this).val($(this).val().substr(0,charsLimit));しかし、ここでの問題は、最大文字数に達したときではなく、textareaの最大高さに達したときにユーザーにこのメソッドを使用させたいことです。私はそれを行う方法を理解していません。感謝します。

コード:

        var countHeight = 1;

        $(dividfortextbox).keypress(function(e) {
     var v = $(this).val();
     var vl = v.replace(/(\r\n|\n|\r)/gm,"").length; 

            if ((e.keyCode || e.which) == 13 && (hIncr * iheight) < checkdivheight && countHeight <= 15) {
            $(this).parent(dividfortext).css('height', (hIncr * iheight) + 'px');
            vWidth = 0;
            countHeight++;
            hIncr++;                

            }

            if (parseInt(vl/count) == chars && countHeight<= 15) {
            $(this).parent(dividfortext).css('height', (hIncr * iheight) + 'px');
            vWidth = 0;
            $(this).val(v + '\n');
            makeDivWidthStop = true;                
            count++;
            countHeight++;
            hIncr++;
            }    


    else {                                      
        vWidth = (vWidth+1); 
        if(vWidth * widthIncreaseSize > tWidth)
            tWidth = vWidth * widthIncreaseSize;

        if (tWidth < checkdivwidth && parseInt(vl/count) <= chars ) {

            $(this).parent(dividfortext).css('width', (tWidth) + 'px');
            divwidth=tWidth;
            }
        }

        if(countHeight > 15){           
        ??? What code should i apply here..?? ???
        } 


});
4

0 に答える 0