Kodenya adalah sebagai berikut:
Salin kode kode sebagai berikut:
<type skrip = "Teks/JavaScript">
String.prototype.trim = function () {
varm = this.match (/^/s*(/s+(/s+/s+)*)/s*$/);
Return (m == null) "": m [1];
}
String.prototype.ismobile = function () {
Return (/^(?: 13/d | 15 [89])-?/D {5} (/d {3} |/*{3}) $/. ;);
}
String.prototype.istel = function ()
{{
// "Format Kompatibilitas: Kode Nasional (2 hingga 3 digit) -D Area (2 hingga 3 digit) -Phone Nomor (7 hingga 8 digit) -PAPITITILITAS (3 digit)"
// return (/^([0/+]/d {2,3}-)? (0/d {2, 3})-)? 3,}))?/.
Return (/^(([0/+]/d {2,3}-)? (0/d {2,3})-) (/d {7,8}) (-(/d {3, ,}))?/.
}
fungsi chkform () {
Dengan (document.form1) {
if (tel.value.ismobile () || tel.value.istel ()) {) {) {
Tel.Value = Tel.Value.trim ();
Peringatan ("Nomor ponsel/ponsel Anda adalah:" + Tel.Value);
Kembali Benar;
}
kalau tidak {
Peringatan ("Silakan masukkan nomor ponsel yang tepat atau nomor telepon/N/N misalnya: 13916752109 atau 0712-3614072");
tel.focus ();
Mengembalikan false;
}
}
}
</script>
<Form name = "Form1" Metode = "POST" ACTION = "">
<input type = "text" name = "Tel" value = "13916752109" size = "15" />
<input type = "tombol" value = "test" onclick = "return chkform ()"/>
</form>