TOC

This article is currently in the process of being translated into Thai (~82% done).

Forms:

Submit & Reset Buttons

ปุ่มกดจะถูกกำหนดด้วย input element และตัวแปร type ปุ่มนั้นมี 2 ชนิด คือ ปุ่ม กดส่งและปุ่มกลับสู่ค่าเริ่มต้น

ปุ่มกดส่งเราจะใช้เมื่อเราต้องการจะส่งข้อมูลจาก form

<input type="submit" value="Submit now" />

ปุ่มกลับสู่ค่าเริ่มต้นใช้เมื่อเราต้องการจะลบข้อมูลเก่าออกจาก form

<input type="reset" value="Reset" />

นี่คือตัวอย่างของ ปุ่มกดส่งและปุ่มกลับสู่ค่าเริ่มต้น

<form action="url-to-formmail-provided-by-your-ISP" method="post">
	First name: <input type="text" name="firstname" /> <br />
	Surname: <input type="text" name="surname" /><br />
	<input type="reset" value="Clear form" />
	<input type="submit" value="Submit now" />
</form>

ปุ่มกดส่งควรกดท้ายสุด ส่วนปุ่มกลับสู่ค่าเริ่มต้นเราสามารถกดเมื่อไหร่ก็ได้


This article has been fully translated into the following languages: Is your preferred language not on the list? Click here to help us translate this article into your language!
adplus-dvertising