私の問題を簡単に説明します。
次のような数字があります。971505896321;971505848963;971505478231;971509856987;
私のクライアントは、上記の数字をテキスト フィールドに書き込む必要があり、それを取得971505896321 and 971505848963 and 971505478231 and 971509856987
してリストに追加する必要があります。
番号をリストに追加することに成功しましたが、なしで番号を取得する方法に問題があります;
。
function AddPhoneNo()
{
var recipientNumber = document.smsmobile.mobile_no;
var opt = "<option value='" + recipientNumber.value + "'>" + recipientNumber.value + "</option>"
if (recipientNumber.value != "")
{
if(verifyPhone(recipientNumber.value))
{
$('#selectedOptions').append(opt);
recipientNumber.value = "";
}
}
}
すべての数字は で始まり971
、各数字の長さは です12
。例: 971506987456
.
あなたの助けに感謝。
ありがとう、