แอตทริบิวต์เหตุการณ์ HTML oninput ถูกทริกเกอร์เมื่อผู้ใช้ป้อนอินพุตในองค์ประกอบ HTML อินพุต/textarea ในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
<tagname oninput=”script”></tagname>
ตัวอย่าง
ให้เราดูตัวอย่างของ HTML ในแอตทริบิวต์เหตุการณ์อินพุต -
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: #000;
height: 100vh;
background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
text-align: center;
padding: 20px;
}
textarea {
border: 2px solid #fff;
background: transparent;
font-size: 1rem;
}
::placeholder {
color: #000;
font-size: 1rem;
}
</style>
</head>
<body>
<h1>HTML oninput Event Attribute Demo</h1>
<textarea placeholder="Enter your message here" oninput="inputFn()" rows='8' cols="50"></textarea>
<script>
function inputFn() {
document.querySelector('textarea').style.background = '#ffffff36';
}
</script>
</body>
</html> ผลลัพธ์

ตอนนี้ป้อนข้อความของคุณในพื้นที่ข้อความเพื่อดูว่าแอตทริบิวต์เหตุการณ์ oninput ทำงานอย่างไร
