AJAX에 대한 간략한 설명
AJAX는 단순히 비동기 JSON 또는 XML입니다 (대부분의 최신 상황에서 JSON). ASYNC 작업을 수행하고 있기 때문에 사용자에게보다 즐거운 UI 경험을 제공 할 것입니다. 이 특정 경우에는 AJAX를 사용하여 FORM 제출을 수행합니다.
정말 빨리 4 개 일반 웹 작업이있다 GET
, POST
, PUT
, 그리고 DELETE
; 이러한 직접 대응 SELECT/Retreiving DATA
, INSERTING DATA
, UPDATING/UPSERTING DATA
,와 DELETING DATA
. 기본 HTML / ASP.Net webform / PHP / Python 또는 기타 form
작업은 POST 작업 인 "제출"입니다. 이 때문에 아래에서 모두 POST 수행에 대해 설명합니다. 그러나 때로는 http를 사용하면 다른 작업을 원할 수 있으며 .ajax
.
귀하를위한 내 코드 (코드 주석에 설명) :
/* attach a submit handler to the form */
$("#formoid").submit(function(event) {
/* stop form from submitting normally */
event.preventDefault();
/* get the action attribute from the <form action=""> element */
var $form = $(this),
url = $form.attr('action');
/* Send the data using post with element id name and name2*/
var posting = $.post(url, {
name: $('#name').val(),
name2: $('#name2').val()
});
/* Alerts the results */
posting.done(function(data) {
$('#result').text('success');
});
posting.fail(function() {
$('#result').text('failed');
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<form id="formoid" action="studentFormInsert.php" title="" method="post">
<div>
<label class="title">First Name</label>
<input type="text" id="name" name="name">
</div>
<div>
<label class="title">Last Name</label>
<input type="text" id="name2" name="name2">
</div>
<div>
<input type="submit" id="submitButton" name="submitButton" value="Submit">
</div>
</form>
<div id="result"></div>
선적 서류 비치
jQuery 웹 사이트 $.post
문서에서.
예 : Ajax 요청을 사용하여 양식 데이터 보내기
$.post("test.php", $("#testform").serialize());
예 : ajax를 사용하여 양식을 게시하고 결과를 div에 넣기
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<form action="/" id="searchForm">
<input type="text" name="s" placeholder="Search..." />
<input type="submit" value="Search" />
</form>
<!-- the result of the search will be rendered inside this div -->
<div id="result"></div>
<script>
/* attach a submit handler to the form */
$("#searchForm").submit(function(event) {
/* stop form from submitting normally */
event.preventDefault();
/* get some values from elements on the page: */
var $form = $(this),
term = $form.find('input[name="s"]').val(),
url = $form.attr('action');
/* Send the data using post */
var posting = $.post(url, {
s: term
});
/* Put the results in a div */
posting.done(function(data) {
var content = $(data).find('#content');
$("#result").empty().append(content);
});
});
</script>
</body>
</html>
중요 사항
OAuth 또는 최소 HTTPS (TLS / SSL)를 사용하지 않고 보안 데이터 (신용 카드 번호, SSN, PCI, HIPAA 또는 로그인 관련 모든 것)에이 방법을 사용하지 마십시오.