ในการสร้างแบบฟอร์มด้วย HTML เราใช้คำสั่งต่อไปนี้ −
<form action = "" method = "get"> Details:<br><br> Student Name<br><input type="name" name="sname"><br> Exam Date and Time<br><input type="datetime-local" name="datetime"><br> <input type="submit" value="Submit">
ในการสร้างฟอร์มด้วย jQuery และ HTML ให้เพิ่มข้อความประเภทอินพุตเป็น −
$form.append('<input type="button" value="button">');
ตัวอย่างที่ดีกว่าคือ −
$myform = $("<form></form>"); $myform.append('<input type="button" value="button">'); $('body').append($myform);