💻พัฒนาเว็บเพจ ตอนที่ 25 - JS Format Phone Number Auto

💻พัฒนาเว็บเพจ ตอนที่ 25 - JS Format Phone Number Auto

Channel:
Subscribers:
336
Published on ● Video Link: https://www.youtube.com/watch?v=OuUn-uQEJ3M



Duration: 9:07
14 views
1


#Zentref #IkaPayabaht #html5 #css #javascript
คำสั่งที่ใช้ในคลิปนี้
//เรียกใช้งานตัว input ประเภท text อ้างอิงจาก id ของ input
var telEl = document.querySelector('#phoneNum');
หรือ var telEl = document.getElementById("phoneNum");
telEl.addEventListener('keyup', (e) =› {
var val = e.target.value;
e.target.value = val
.replace(/\D/g, '')
// เซ็ตรูปแบบเบอร์โทร xxx-xxx-xxxx
.replace(/(\d{1,3})(\d{1,3})?(\d{1,4})?/g, function(txt, f, s, t) {
// ส่วนแสดงค่าใน input
if (t) {
return `${f}-${s}-${t}`
} else if (s) {
return `${f}-${s}`
} else if (f) {
return `${f}`
}
});
});
*หมายเหตุ คำสั่ง input ควรกำหนด maxlength ด้วย




Other Videos By Ikapayabaht


2021-12-04GTA Vice City Definitive Edition [FULL HD] Gameplay Part 11: จัดฉากการฆาตกรรมหญิงสาว
2021-11-30GTA Vice City Definitive Edition [FULL HD] Gameplay Part 7: บุกเข้าสนามกอล์ฟฆ่านักธุรกิจ
2021-11-30GTA Vice City Definitive Edition [FULL HD] Gameplay Part 8: หลบหนีตำรวจตามล่าคนส่งของ
2021-11-30GTA Vice City Definitive Edition [FULL HD] Gameplay Part 6: มนุษย์เลื่อยไฟฟ้าบุกฆ่าเจ้าพ่อ
2021-11-29GTA Vice City Definitive Edition [FULL HD] Gameplay Part 3: สั่งสอนและข่มขู่ทนายทั้งสอง
2021-11-29GTA Vice City Definitive Edition [FULL HD] Gameplay Part 5: ขับรถไล่ล่าสังหารเด็กส่งพิซซ่า
2021-11-29GTA Vice City Definitive Edition [FULL HD] Gameplay Part 4: ปลุกระดมม็อบคนงานประท้วง
2021-11-29👨‍💻สร้าง Web Application PHP Laravel ตอนที่ 17 การเข้ารหัส/ถอดรหัสข้อมูล
2021-11-29👨‍💻สร้าง Web Application PHP Laravel ตอนที่ 16 แสดงข้อมูลจำกัดตัวอักษร
2021-11-29💻พัฒนาเว็บเพจ ตอนที่ 26 - JS Random Number (Type Person Id)
2021-11-29💻พัฒนาเว็บเพจ ตอนที่ 25 - JS Format Phone Number Auto
2021-11-29💻พัฒนาเว็บเพจ ตอนที่ 24 - HTML5 & JS Find Difference Value Day/Hour
2021-11-27LEGO 🦖Jurassic World (2015) - Gameplay Walkthrough Part 20: Main Street Showdown
2021-11-27GTA Vice City Definitive Edition [FULL HD] Gameplay Part 2: คุ้มกันเพื่อนโดนพ่อครัวหมายหัว
2021-11-27GTA Vice City Definitive Edition [FULL HD] Gameplay Part 1: เชิญไปงานปาร์ตี้บนเรือสําราญ
2021-11-25🔆ต้อนรับน้องใหม่ CookieRun | 🧑‍🎄คุกกี้รสเอ๊กน็อก⚡Eggnog Cookie🍪
2021-11-23LEGO 🦖Jurassic World (2015) - Gameplay Walkthrough Part 19: Under Attack
2021-11-23LEGO 🦖Jurassic World (2015) - Gameplay Walkthrough Part 18: Out of Bounds13
2021-11-23LEGO 🦖Jurassic World (2015) - Gameplay Walkthrough Part 17: Gyrosphere Valley
2021-11-22LEGO 🦖Jurassic World (2015) - Gameplay Walkthrough Part 16: Welcome to Jurassic World
2021-11-22LEGO 🦖Jurassic World (2015) - Gameplay Walkthrough Part 14: Eric Kirby



Tags:
Zentref
web
HTML
website
ภาษา html
css
CSS
html&css
javascript