你好我短信面板上的工作,我要檢查,文本區域的長度現在我使用這些代碼:當我將文本粘貼到文本區域警報顯示驗證長度
$("#txt").keydown(function() {
var len = $(this).val().length;
$("#lbl").text(len);
if (len <= 70) {
$("#lbl").text("One SMS");
if (confirm("more than one sms are you sure?")) {
$("#lbl").text(len);
}
}
else if (len >= 71 && len <= 133) {
$("#lbl").text("two SMS");
if (confirm("more than two sms are you sure?")) {
$("#lbl").text(len);
}
}
else if (len > 134 && len <= 199) {
$("#lbl").text("three SMS");
alert("more than three sms are you sure?");
}
});
我想和選擇沒有輸入任何東西
謝謝你的建議?
第一個建議 - 提出可回答的問題。 「不完美」不是一個解釋。 – zerkms
看看這個 [textarea長度計數](http://stackoverflow.com/questions/4506959/jquery-text-area-length-count) –
@zerkms例如,當我複製文本到textarea它不工作。 –