Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To enforce keyboard entry so that users can only input numerical values for a text field

Thai

เมื่อต้องการบังคับใช้รายการแป้นพิมพ์เพื่อให้ผู้ใช้สามารถป้อนค่าตัวเลขสำหรับฟิลด์ข้อความเท่านั้น

Code:

There are several online resources that describe this (e.g. http://stackoverflow.com/questions/995183/how-to-allow-only-numeric-0-9-in-html-inputbox-using-jqueryhttp://snipt.net/GerryEng/jquery-making-textfield-only-accept-numeric-values, etc.).

For example, if your text field ID is "numeric", you can use this sample script:

Thai

มีแหล่งข้อมูลออนไลน์หลายแห่งที่อธิบายสิ่งนี้ (เช่น http://stackoverflow.com/questions/995183/how-to-allow-only-numeric-0-9-in-html-inputbox-using-jquery, http: // snipt.net/GerryEng/jquery-making-textfield-only-accept-numeric-values ​​เป็นต้น)

ตัวอย่างเช่นหาก ID ฟิลด์ข้อความของคุณคือ "ตัวเลข" คุณสามารถใช้สคริปต์ตัวอย่างนี้:

Code Block
<script>
$(document).ready(function() {
    $("#numeric").keydown(function(event) {
        // Allow only backspace and delete
        if ( event.keyCode == 46 || event.keyCode == 8 ) {
            // let it happen, don't do anything
        }
        else {
            // Ensure that it is a number and stop the keypress
            if (event.keyCode < 48 || event.keyCode > 57 ) {
                event.preventDefault();
            }
        }
    });
});
</script>