Home > Web Front-end > JS Tutorial > body text

Analysis of jQuery Ajax Operation (2) Data Transfer

零下一度
Release: 2017-06-17 17:51:11
Original
1096 people have browsed it

In the previous article, the examples of data loading of <a href="//m.sbmmt.com/wiki/1495.html" target="_blank">jquery</a> Ajax are all obtained from static files, and Ajax The greater value lies in data transfer with the back-end server, dynamically requesting and sending data.

Request data

We can use GET and POST to request data from the backend. Here we take PHP as an example, assuming there is a test Page age.php, used to return age information, the content is:

if(isset($_REQUEST['name']) && $_REQUEST['name'] == 'stephen') {
    echo '23';
}
Copy after login

The current page content is:

<p>
  <a href="age.php">stephen</a>
  <span>age : </span>
  <span id="sex"></span>
</p>
Copy after login

细说 jQuery Ajax操作篇(二) - 数据传递

##We hope After clicking the

a tag, get the age information without refreshing the page. First use the GET method to request data:

GET method

  $('a').click(function(e) {
    e.preventDefault();//
    var url = $(this).attr('href'),
      name = $(this).text(),
      requestData = {'name': name};

    $.get(url, requestData, function(data) {
      $('#sex').html(data);
    });
  });
Copy after login

After clicking the

a tag, the current page is:

细说 jQuery Ajax操作篇(二) - 数据传递

Data request successful. Let’s test again using the

POST method:

POST method

  $('a').click(function(e) {
    e.preventDefault();//
    var url = $(this).attr('href'),
      name = $(this).text(),
      requestData = {'name': name};

    $.post(url, requestData, function(data) {
      $('#sex').html(data);
    });
  });
Copy after login

The code is almost the same, except that the

get method is changed to post method. Here we can actually use the
load method to simplify the code:

  $('a').click(function(e) {
    e.preventDefault();
    var url = $(this).attr('href'),
      name = $(this).text(),
      requestData = {'name': name};

    $('#sex').load(url, requestData);
  });
Copy after login
Send data

In addition to using

Ajax technology to get it from the backend Data can also be sent to the backend. A common scenario is to submit a form asynchronously. Here is user verification as an example:

<form action="validate.php">
  username:<input id="username" name="username" type="text" />
  password:<input id="password" name="password" type="text" />
  <input value="submit" type="submit" />
</form>
Copy after login

细说 jQuery Ajax操作篇(二) - 数据传递

Assume that when the user name is

stephenlee, the verification passes when the password is 123456, otherwise it fails. The test page validate.php is:

if($_REQUEST['username'] == 'stephenlee' && $_REQUEST['password'] == '123456') {
    echo 'pass';
} else {
    echo 'fail';
}
Copy after login
Use the

get method Send data to the backend for verification:

  $('form').submit(function(e) {
    e.preventDefault();//
    var url = $(this).attr('action'), 
      username = $('input[name="username"]').val(),
      password = $('input[name="password"]').val(),
      requestData = {'username': username, 'password': password};

    $.get(url, requestData, function(result) {
      alert(result);
    });
  });
Copy after login
After entering the wrong user name

lucas, the result is:

细说 jQuery Ajax操作篇(二) - 数据传递

Enter the correct user name

stephenlee, the result is:

细说 jQuery Ajax操作篇(二) - 数据传递

The idea of ​​sending data using the

post method is the same, so I won’t go into details.

The above is the detailed content of Analysis of jQuery Ajax Operation (2) Data Transfer. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!