DOM แท็ก form
property
action
id
length
method
target
action อ้างอิงค่า action
ตัวอย่าง
<form id="form1" action="action1.php">
<input type="button" value="button1">
</form>
document.all.form1.action="action2.php"
จากตัวอย่างจะเปลี่ยน action ของ form1 เป็น action2.php
id กำหนดหรือรับค่าid
ตัวอย่าง
<form id="form1" action="action1.php">
<input type="button" value="button1">
</form>
document.write(document.all.form1.id);
จากตัวอย่างเป็นการอ้างอิองค่า id ของ form1
length จำนวนelement ในform
ตัวอย่าง
<form id="form1" action="action1.php">
<input type="button" value="button1">
<input type="button" value="button1">
<input type="button" value="button1">
<input type="button" value="button1">
</form>
document.all.form1.length;
จากตัวอย่าง document.all.form1.length จะมีค่าเท่ากับ 4
method ค่าของวิธีการส่งข้อมูล
ตัวอย่าง
<form id="form1" action="action1.php" method="post">
<input type="button" value="button1">
</form>
จาก form ตัวอย่าง document.all.form1.method จะมีค่าเท่ากับ post
ค่าที่กำหนดได้คือ post | get
target กำหนดรูปแบบการเปิดหน้าต่าง
ตัวอย่าง
<form id="form1" action="action1.php" method="post"
target="_blank" >
<input type="button" value="button1">
</form>
จาก form ตัวอย่าง document.all.form1.target จะมีค่าเท่ากับ _blank
ค่าที่กำหนดได้คือ
_blank
_parent
_self
_top