»
Tiếng AnhTiếng PhápTiếng Việt

In - Chuyển sang dạng số điện thoại - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Tính toán » Chuyển sang dạng số điện thoại
URL: https://www.javascriptbank.com/phone-number-formatter.html

Chuyển sang dạng số điện thoại © JavaScriptBank.comHiệu ứng sẽ chuyển một chuỗi số hợp lệ do người dùng nhập vào thành định dạng số điện thoại có kiểu như (xxx)xxx-xxxx.

Phiên bản đầy đủ: jsB@nk » Tính toán » Chuyển sang dạng số điện thoại
URL: https://www.javascriptbank.com/phone-number-formatter.html



JavaScript
<SCRIPT language=javascript>function phoneFormat(obj){newValue = obj.value.replace(/\D/g,'');if (newValue.length < 10 || newValue.length > 10){newValue = '';alert('Please enter a valid phone number.');}if (newValue != '' && newValue.length == 10){newValue = "(" + newValue.substring(0,3) + ")" + newValue.substring(3,6) + "-" +    newValue.substring(6,10);}return newValue;}</SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<INPUT type=button value="Phone Number" name="Phone Number"> <INPUT id=txtPhone onblur=this.value=phoneFormat(this) maxLength=13 size=13 name=txtPhone><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->