양식 새로 고침없이 폼 데이터를 PHP로 전달하는 AJAX로 양식 제출
PHP양식 새로 고침없이 폼 데이터를 PHP로 전달하는 AJAX로 양식 제출
아무도 왜이 코드가 작동하지 않는지를 말해 줄 수 있습니까?
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
$(function () {
$('form').bind('submit', function () {
$.ajax({
type: 'post',
url: 'post.php',
data: $('form').serialize(),
success: function () {
alert('form was submitted');
}
});
return false;
});
});
</script>
</head>
<body>
<form>
<input name="time" value="00:00:00.00"><br>
<input name="date" value="0000-00-00"><br>
<input name="submit" type="button" value="Submit">
</form>
</body>
</html>
제출을 누르면 아무 일도 일어나지 않습니다. 받는 PHP 파일에서 mysql 쿼리에 데이터를 넣기 위해 $ _POST [ 'time'] 및 $ _POST [ 'date']를 사용하고 있지만 데이터를 가져 오지 않았습니다. 어떤 제안? 제출 버튼과 관련이 있다고 가정하고 있지만 알아낼 수는 없습니다.
해결법
-
==============================
1.양식은 아약스 요청 후 제출 중입니다.
양식은 아약스 요청 후 제출 중입니다.
<html> <head> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script> $(function () { $('form').on('submit', function (e) { e.preventDefault(); $.ajax({ type: 'post', url: 'post.php', data: $('form').serialize(), success: function () { alert('form was submitted'); } }); }); }); </script> </head> <body> <form> <input name="time" value="00:00:00.00"><br> <input name="date" value="0000-00-00"><br> <input name="submit" type="submit" value="Submit"> </form> </body> </html>
-
==============================
2.
<html> <head> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script> $(function () { $('form').bind('click', function (event) { event.preventDefault();// using this page stop being refreshing $.ajax({ type: 'POST', url: 'post.php', data: $('form').serialize(), success: function () { alert('form was submitted'); } }); }); }); </script> </head> <body> <form> <input name="time" value="00:00:00.00"><br> <input name="date" value="0000-00-00"><br> <input name="submit" type="submit" value="Submit"> </form> </body> </html>
PHP
<?php $time=""; $date=""; if(isset($_POST['time'])){$time=$_POST['time']} if(isset($_POST['date'])){$time=$_POST['date']} echo $time."<br>"; echo $date; ?>
-
==============================
3.JS 코드
JS 코드
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/ libs/jquery/1.3.0/jquery.min.js"> </script> <script type="text/javascript" > $(function() { $(".submit").click(function() { var time = $("#time").val(); var date = $("#date").val(); var dataString = 'time='+ time + '&date=' + date; if(time=='' || date=='') { $('.success').fadeOut(200).hide(); $('.error').fadeOut(200).show(); } else { $.ajax({ type: "POST", url: "post.php", data: dataString, success: function(){ $('.success').fadeIn(200).show(); $('.error').fadeOut(200).hide(); } }); } return false; }); }); </script>
HTML 양식
<form> <input id="time" value="00:00:00.00"><br> <input id="date" value="0000-00-00"><br> <input name="submit" type="button" value="Submit"> </form> <span class="error" style="display:none"> Please Enter Valid Data</span> <span class="success" style="display:none"> Form Submitted Success</span> </div>
PHP 코드
<?php if($_POST) { $date=$_POST['date']; $time=$_POST['time']; mysql_query("SQL insert statement......."); }else { } ?>
여기에서 가져온
-
==============================
4.다음은 ajax를 통해 양식을 제출하는 jQuery를위한 훌륭한 플러그인입니다.
다음은 ajax를 통해 양식을 제출하는 jQuery를위한 훌륭한 플러그인입니다.
http://malsup.com/jquery/form/
그것 같이 간단한 :
<script src="http://malsup.github.com/jquery.form.js"></script> <script> $(document).ready(function() { $('#myForm').ajaxForm(function() { alert('form was submitted'); }); }); </script>
게시 위치에 대한 양식 작업을 사용합니다. 자신의 코드로는 이것을 달성 할 수 없지만이 플러그인은 나에게 매우 잘 작동했다!
-
==============================
5.JS 코드
JS 코드
$("#submit").click(function() { //get input field values var name = $('#name').val(); var email = $('#email').val(); var message = $('#comment').val(); var flag = true; /********validate all our form fields***********/ /* Name field validation */ if(name==""){ $('#name').css('border-color','red'); flag = false; } /* email field validation */ if(email==""){ $('#email').css('border-color','red'); flag = false; } /* message field validation */ if(message=="") { $('#comment').css('border-color','red'); flag = false; } /********Validation end here ****/ /* If all are ok then we send ajax request to email_send.php *******/ if(flag) { $.ajax({ type: 'post', url: "email_send.php", dataType: 'json', data: 'username='+name+'&useremail='+email+'&message='+message, beforeSend: function() { $('#submit').attr('disabled', true); $('#submit').after('<span class="wait"> <img src="image/loading.gif" alt="" /></span>'); }, complete: function() { $('#submit').attr('disabled', false); $('.wait').remove(); }, success: function(data) { if(data.type == 'error') { output = '<div class="error">'+data.text+'</div>'; }else{ output = '<div class="success">'+data.text+'</div>'; $('input[type=text]').val(''); $('#contactform textarea').val(''); } $("#result").hide().html(output).slideDown(); } }); } }); //reset previously set border colors and hide all message on .keyup() $("#contactform input, #contactform textarea").keyup(function() { $("#contactform input, #contactform textarea").css('border-color',''); $("#result").slideUp(); });
HTML 양식
<div class="cover"> <div id="result"></div> <div id="contactform"> <p class="contact"><label for="name">Name</label></p> <input id="name" name="name" placeholder="Yourname" type="text"> <p class="contact"><label for="email">Email</label></p> <input id="email" name="email" placeholder="admin@admin.com" type="text"> <p class="contact"><label for="comment">Your Message</label></p> <textarea name="comment" id="comment" tabindex="4"></textarea> <br> <input name="submit" id="submit" tabindex="5" value="Send Mail" type="submit" style="width:200px;"> </div>
PHP 코드
if ($_SERVER['REQUEST_METHOD'] == 'POST') { //check if its an ajax request, exit if not if (!isset($_SERVER['HTTP_X_REQUESTED_WITH']) AND strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) != 'xmlhttprequest') { //exit script outputting json data $output = json_encode( array( 'type' => 'error', 'text' => 'Request must come from Ajax' )); die($output); } //check $_POST vars are set, exit if any missing if (!isset($_POST["username"]) || !isset($_POST["useremail"]) || !isset($_POST["message"])) { $output = json_encode(array('type' => 'error', 'text' => 'Input fields are empty!')); die($output); } //Sanitize input data using PHP filter_var(). $username = filter_var(trim($_POST["username"]), FILTER_SANITIZE_STRING); $useremail = filter_var(trim($_POST["useremail"]), FILTER_SANITIZE_EMAIL); $message = filter_var(trim($_POST["message"]), FILTER_SANITIZE_STRING); //additional php validation if (strlen($username) < 4) { // If length is less than 4 it will throw an HTTP error. $output = json_encode(array('type' => 'error', 'text' => 'Name is too short!')); die($output); } if (!filter_var($useremail, FILTER_VALIDATE_EMAIL)) { //email validation $output = json_encode(array('type' => 'error', 'text' => 'Please enter a valid email!')); die($output); } if (strlen($message) < 5) { //check emtpy message $output = json_encode(array('type' => 'error', 'text' => 'Too short message!')); die($output); } $to = "info@wearecoders.net"; //Replace with recipient email address //proceed with PHP email. $headers = 'From: ' . $useremail . '' . "\r\n" . 'Reply-To: ' . $useremail . '' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); $sentMail = @mail($to, $subject, $message . ' -' . $username, $headers); //$sentMail = true; if (!$sentMail) { $output = json_encode(array('type' => 'error', 'text' => 'Could not send mail! Please contact administrator.')); die($output); } else { $output = json_encode(array('type' => 'message', 'text' => 'Hi ' . $username . ' Thank you for your email')); die($output); }
이 페이지는 더 간단한 예제를 가지고 있습니다. http://wearecoders.net/submit-form-without-page-refresh-with-php-and-ajax/
-
==============================
6.유형 = "버튼"
유형 = "버튼"
해야한다
type="submit"
-
==============================
7.이벤트를 처리 할 때 이벤트의 객체를 함수에 전달한 다음 구문 즉 event.preventDefault ();
이벤트를 처리 할 때 이벤트의 객체를 함수에 전달한 다음 구문 즉 event.preventDefault ();
그러면 데이터를 새로 고치지 않고 웹 페이지로 전달합니다.
-
==============================
8.
$(document).ready(function(){ $('#userForm').on('submit', function(e){ e.preventDefault(); //I had an issue that the forms were submitted in geometrical progression after the next submit. // This solved the problem. e.stopImmediatePropagation(); // show that something is loading $('#response').html("<b>Loading data...</b>"); // Call ajax for pass data to other place $.ajax({ type: 'POST', url: 'somephpfile.php', data: $(this).serialize() // getting filed value in serialize form }) .done(function(data){ // if getting done then call. // show the response $('#response').html(data); }) .fail(function() { // if fail then getting message // just in case posting your form failed alert( "Posting failed." ); }); // to prevent refreshing the whole page page return false; });
from https://stackoverflow.com/questions/16616250/form-submit-with-ajax-passing-form-data-to-php-without-page-refresh by cc-by-sa and MIT license
'PHP' 카테고리의 다른 글
PDO를 사용하여 MySQL에서 숫자 형을 얻는 방법? (0) | 2018.09.11 |
---|---|
수식을 평가하는 방법 PHP에서 문자열로 전달 된? (0) | 2018.09.11 |
PHP에서 체크 박스가 선택되었는지 읽는 방법? (0) | 2018.09.11 |
이미지를 이메일에 삽입하는 법 (0) | 2018.09.11 |
Laravel에서 여러 데이터베이스를 사용하는 방법 (0) | 2018.09.11 |