1
예 아약스 양식양식 필드를 쉽게 채울 수 있습니까?
<form method="post">
<input type="text" name="name" />
<input type="text" name="email" />
<select name="group">
<option value="1">group 1</option>
<option value="2">group 2</option>
</select>
<button type="submit">submit</button>
</form>
형태가 아약스 호출을 보여줄 때마다이 전송되고 서버가 나는 지루한 일을하고 싶지 않아
{"name":"john", "email": "[email protected]", "group": 2}
같은 JSON 객체를 반환 쉽게 그렇게 간단한 플러그인을 만들 수 수동으로 JSON 데이터와 형태, 예를 들어
$('#myform').fillWith(json);
+1 – munch