คุณสมบัติประเภทซ่อนอินพุต HTML DOM ส่งคืนค่าแอตทริบิวต์ประเภทช่องป้อนข้อมูล
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
object.type
ตัวอย่าง
ให้เราดูตัวอย่างของ HTML DOM อินพุตคุณสมบัติประเภทที่ซ่อนอยู่ -
<!DOCTYPE html>
<html>
<head>
<style>
body{
text-align:center;
background-color:#F19A3E;
color:#fff;
}
.btn{
background-color:#3C787E;
border:none;
height:2rem;
border-radius:50px;
width:60%;
margin:1rem auto;
display:block;
color:#fff;
outline:none;
}
.show{
color:#fff;
font-size:1.2rem;
font-weight:600;
}
</style>
</head>
<body>
<h1>DOM Hidden type Property Demo</h1>
Enter your Name:<input type="hidden" class="input-field">
<button onclick="getType()" class="btn">Click to get above input type</button>
<div class="show"></div>
<script>
function getType() {
var inputField = document.querySelector(".input-field");
var msgDiv = document.querySelector(".show");
msgDiv.innerHTML = "type = " + inputField.type;
}
</script>
</body>
</html> ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

คลิกที่ปุ่ม “คลิกเพื่อรับเหนือประเภทอินพุต” เพื่อรับค่าของแอตทริบิวต์ประเภทช่องป้อนข้อมูลที่ซ่อนอยู่
