Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

เหตุการณ์ onchange ไม่ทำงานในอินพุตประเภทสีด้วย JavaScript


เหตุการณ์ onchange จะทริกเกอร์เมื่อองค์ประกอบเปลี่ยนแปลง คุณต้องใช้ไวยากรณ์ด้านล่าง

onchange="yourFunctionName(this);"

ตัวอย่าง

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<p>
<label for="color">Choose Color</label> <input type="color" id="selectedColor"
value="#985d5d" onchange="showValue(this);" />
</p>
<script>
   function showValue(c){
      console.log(c.value);
   }
</script>
</body>
</html>

หากต้องการเรียกใช้โปรแกรมข้างต้น ให้บันทึกชื่อไฟล์ anyName.html(index.html) และคลิกขวาที่ไฟล์และเลือกตัวเลือก open with live server ใน VS code editor

ผลลัพธ์

เหตุการณ์ onchange ไม่ทำงานในอินพุตประเภทสีด้วย JavaScript

หลังจากคลิกที่สีประเภทอินพุต คุณจะได้รับค่าสีในคอนโซล -

เหตุการณ์ onchange ไม่ทำงานในอินพุตประเภทสีด้วย JavaScript