document.getElementById การเข้าถึง Element Id
บทความวันที่ 10 พฤศจิกายน 2555
document.getElementById คือ คำสั่งสำหรับการเข้าถึง Element Id ที่ต้องการใน Form HTML ซึ่งมีประโยชน์อย่างมากเวลาต้องการจัดการ Obejct Element ต่าง ๆ ที่อยู่บน Form หรือการเขียนโปรแกรมเพื่อดัก Event ด้วย JavaScript
ภาพรวมของ document.getElementById
1. มีไว้สำหรับเข้าถึง Element Id ต่าง ๆ ใน Form HTML ใน Attribue Id
2. ใช้สำหรับการจัดการข้อมูลต่าง ๆ ของ Element Object ใน HTML Form
3. เป็นตัวแทนการเข้าถึง method ต่าง ๆ ของ Element Object เช่น value, focus เป็นต้น
ตัวอย่างโปรแกรม
<input type="text" id="txt" value="amplysoft" />
<script type="text/javascript">
var txt = document.getElementById('txt').value;
document.write( "<br/>javascript write txt id value = " + txt );
</script>
ผลลัพธ์
คำค้นหา document.getElementById, รับทำเว็บ, รับเขียนเว็บ, เรียนเขียนโปรแกรม