คุณสมบัติ max ของหมายเลขอินพุต HTML DOM จะส่งกลับและแก้ไขค่าของแอตทริบิวต์สูงสุดของฟิลด์อินพุตของ type=”number” ในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
-
ผลตอบแทนสูงสุด
object.max
-
2. แก้ไขค่าสูงสุด
object.max = “number”
ตัวอย่าง
ให้เราดูตัวอย่างของคุณสมบัติสูงสุดของหมายเลขอินพุต -
<!DOCTYPE html>
<html>
<head>
<style>
html{
height:100%;
}
body{
text-align:center;
color:#fff;
background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat;
height:100%;
}
p{
font-weight:700;
font-size:1.1rem;
}
input{
display:block;
width:35%;
border:2px solid #fff;
background-color:transparent;
color:#fff;
font-weight:bold;
padding:8px;
margin:1rem auto;
}
.btn{
background:#0197F6;
border:none;
height:2rem;
border-radius:2px;
width:35%;
margin:2rem auto;
display:block;
color:#fff;
outline:none;
cursor:pointer;
}
.show{
font-size:1.5rem;
font-weight:bold;
}
</style>
</head>
<body>
<h1>DOM Input number max/min property Demo</h1>
<p>Enter your roll number (between 1 and 60)</p>
<input type="number" class="numberInput" min="1" max="60">
<button type="button" onclick="showMySelection()" class="btn">Show Roll Number</button>
<div class="show"></div>
<script>
function showMySelection() {
var numberInput = document.querySelector(".numberInput");
var showMsg = document.querySelector(".show");
console.log(numberInput.min,numberInput.max);
if(numberInput.value === ''){
showMsg.innerHTML="Please enter value!!";
} else{
if((numberInput.value <= 1) && (numberInput.value <= 60)){
showMsg.innerHTML = numberInput.value;
} else{
showMsg.innerHTML = "Please enter correct roll number!!";
}
}
}
</script>
</body>
</html> ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ป้อนหมายเลขม้วนระหว่าง 1 ถึง 60 จากนั้นคลิกที่ปุ่ม “แสดงหมายเลขม้วน” เพื่อแสดงหมายเลขม้วน

ป้อนหมายเลขม้วนที่อยู่นอกขอบเขต จากนั้นคลิกที่ปุ่ม “แสดงหมายเลขม้วน” เพื่อแสดงข้อความเตือน
