jquery vslidation remove spaces from input คืออะไร


jQuery validation remove spaces from input คือ ฟังก์ชันที่ใช้ลบช่องว่างออกจาก input field โดยใช้ jQuery

วิธีใช้

JavaScript

$(document).ready(function() {
  $("#input").on("input", function() {
    $(this).val($(this).val().replace(/ /g, ""));
  });
});

อธิบาย

  • $(document).ready(function() { : รอจน DOM โหลดเสร็จ
  • $("#input").on("input", function() { : ตรวจจับเหตุการณ์ input บน input field ที่มี id “input”
  • $(this).val($(this).val().replace(/ /g, "")); : ลบช่องว่างทั้งหมดออกจาก input field โดยใช้ regex / /g

ตัวอย่าง

HTML

<input type="text" id="input" />

ใช้โค้ดอย่างระมัดระวัง

JavaScript

$(document).ready(function() {
  $("#input").on("input", function() {
    $(this).val($(this).val().replace(/ /g, ""));
  });
});

ผลลัพธ์

เมื่อผู้ใช้พิมพ์ช่องว่างใน input field ช่องว่างจะถูกลบออกโดยอัตโนมัติ

ข้อควรระวัง

  • ฟังก์ชันนี้ลบช่องว่างทั้งหมดออกจาก input field โดยไม่คำนึงถึงตำแหน่ง
  • ตรวจสอบให้แน่ใจว่าผู้ใช้ต้องการลบช่องว่างออกจาก input field จริงๆ

แหล่งข้อมูล

  • jQuery Validation Remove Spaces: https://stackoverflow.com/questions/41844472/jquery-remove-first-and-last-space-on-input-propertychange
  • jQuery API: https://api.jquery.com/

หวังว่าจะเป็นประโยชน์!

Related Posts
dimiss keyboard flutter คืออะไร

ใน Flutter dismiss keyboard หมายถึง การซ่อนแป้นพิมพ์เสมือนบนหน้าจอ วิธีการ dismiss keyboard ใช้ FocusNode: Dart imp Read more

bootstrap5 cdn คืออะไร

Bootstrap5 CDN คือ Content Delivery Network ของ Bootstrap 5 ซึ่งเป็นเฟรมเวิร์ก front-end ยอดนิยมที่ช่วยให้นักพัฒนาเว็บสร Read more

เขียนโค้ดดึงเนื้อหาจาก wordpress

โค้ดดึงเนื้อหาจาก WordPress วิธีดึงเนื้อหาจาก WordPress มีหลายวิธี ขึ้นอยู่กับประเภทของเนื้อหาที่ต้องการดึง ดึงบทความทั้ Read more

jquery vslidation remove spaces from input คืออะไร

วิธีการ jQuery Validation remove spaces from input หมายถึง การใช้ jQuery Validation ในการลบช่องว่างออกจาก input field บน Read more