DOM แท็ก body
property
className
id

className รับหรือตั้งค่าของ class
ตัวอย่าง
<html>
<head>
</head>
<body id="body1" class="testStyle">
<script type="text/javascript">
document.write(document.all.body1.className);
</script>
</body>
</html>

จากตัวอย่างจะพิมพ์ข้อความว่า testStyle


id กำหนดหรือรับค่าid
ตัวอย่าง

<html>
<head>
</head>
<body id="body1" class="testStyle">
<script type="text/javascript">
document.write(document.all.body1.id);
</script>
</body>
</html>

จากตัวอย่างจะพิมพ์ข้อความว่า body1


menu DOM