嗨,我正在使用 SMS 面板,我想检查文本区域的长度,现在我正在使用这些代码:
$("#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?");
}
});
我想当我将文本粘贴到 textArea 时显示警报并选择 no cant input any
谢谢你的建议?