คือการเพิ่มช่วงสำหรับค่า คุณยังสามารถตั้งค่าการจำกัดช่วงสำหรับตัวเลขได้ สำหรับข้อจำกัด ให้ใช้แอตทริบิวต์เช่นแอตทริบิวต์ min, max และ step ช่วงเริ่มต้นคือตั้งแต่ 0 ถึง 100
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีใช้ประเภทอินพุตช่วงใน HTML ช่วงจะมองเห็นเป็นแถบเลื่อน -
<!DOCTYPE html> <html> <head> <title>HTML input range</title> </head> <body> <form action = "" method = "get"> Let us know where the installation of the software stopped :<br><br> <input type = "range" name = "point" min = "0" max = "50"><br> <input type = "submit" value = "Submit"> </form> </body> </html>