0

我有这段代码可以检查粘贴时文本框中的字符长度。

<asp:TextBox id="fileDescriptionTxtbox" onKeyUp = "checkLength();"></asp:TextBox>

我担心的是,它不适用于第一个 keyup 事件(第一次粘贴)。它仅在我第二次粘贴相同的字符时才有效。

4

1 回答 1

0

Try

<b>Name</b>
<input type="text" id="txtname" />

$("#txtname").bind('paste', function (e) {
    setTimeout(function (e) {
   var x=$("#txtname").val().length;
        alert(x);
        }, 100);

});

check the jsfiddle here

http://jsfiddle.net/arunberti/34VCF/

于 2013-07-19T06:52:43.677 回答