こんにちは私は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?");
}
});
テキストをテキストに貼り付けるときに欲しいエリアアラートが表示され、何も入力できないを選択します
あなたのアドバイスに感謝しますか?