我有一些验证电话号码的代码,带有前缀验证。我想从第一个数字验证,最多四位数。例如:
第一个数字
0 =>有效的
1-9 =>无效
第二个数字
8 =>有效的
1-7& 9 =>无效
第三位数
1 =>有效
2 =>有效
3-9 =>无效
四位数
7 =>有效
8 =>有效
9 =>有效
1-6 =>无效
是否可以使用正则表达式验证?
我有正则表达式代码
/^08(17|18|19|31|32|33|38|59|77|78)[0-9]{0,8}$/
但未从第一位数字验证。请帮帮我
这是我的PHP代码:
<div class="container">
<div style="width:601px; height: 487px;position: fixed;">
<div style="background-image: url(xlimages/20160614_XL_elemenVisual_-02_cropped.png); background-size: 600px 563px;">
<div style="height:563px;">
<center>
<h2 style="color: white; padding-top: 32px; font-size: 50px; font-family: "Gotham Bold";"><b>Masukkan No. XL/Axis</b></h2>
<form action="<?php echo $_SERVER[PHP_SELF]; ?>" method="POST">
<div style="margin-top:70px;">
<div class="input-control">
<br/>
<input type="text" name="msidn" id="jkeyboard" onlick="$('#pwd').replaceSelection("", true);" min="1" style="font-weight: bold; width:500px; height: 70px; border-color:#1ba1e2; color: #1ba1e2; font-size: 30px; text-align: center; line-height: 75px;" required>
</div>
<input type="hidden" name="cmd" value="cek"><br/><br/><br/><br/><br/><span id="spnPhoneStatus"></span>
<div style="margin-top: 190px;"><b>
<input type="submit" onclick="document.getElementById('sound1').play();" name="sbm" value="Lanjut" style="margin-bottom: 6px;background: #1ba1e2; border-color: #1ba1e2; height: 70px; font-weight: bold; margin-left:0px; width:280px; font-size: 30px;" class="button primary">
</b><br/><br/><br/>
</div>
</div>
</form>
</center>
</div>
</div>
</div>
</div>
这是我的javascript代码:
<script>
$(document).ready(function() {
$('#jkeyboard').blur(function(e) {
if (validatePhone('jkeyboard')) {
$('#spnPhoneStatus').html('Nomor Yang Anda Masukkan No. XL/Axis');
$('#spnPhoneStatus').css('color', 'green');
} else {
$('#spnPhoneStatus').html('Nomor Yang Anda Masukkan Bukan No. XL/Axis');
$('#spnPhoneStatus').css('color', 'red');
}
});
});
function validatePhone(jkeyboard) {
var a = document.getElementById(jkeyboard).value;
var filter = /^08(17|18|19|31|32|33|38|59|77|78)[0-9]{0,8}$/;
if (filter.test(a)) {
return true;
} else {
return false;
}
}
</script>
答案 0 :(得分:2)
感谢bobble bubble的共同努力 而我这是最后的正则表达式:
^0([8]([12]([789]([0-9]{0,8}))?)?)?$
答案 1 :(得分:1)
它解决了,thx for bobblebubble,这个正则表达式解决了我的问题
/^0(?:8(?:[12][789]?)?)?$/