Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

jQuery와 HTML을 사용하여 양식 만들기


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">

제이쿼리와 HTML을 사용하여 양식을 만들려면 입력 유형 텍스트를 다음과 같이 추가하십시오. -

$form.append('<input type="button" value="button">');

더 나은 예는 -

$myform = $("<form></form>");
$myform.append('<input type="button" value="button">');
$('body').append($myform);