我将简要解释我的问题:
我有一个看起来像这样的数字: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
。
感谢你的帮助。
谢谢,