jquery Ajax uses the Get method to not upload values to the background, why

Source: Internet
Author: User
Title:
The following is the JS method
function Login () {
$.ajax ({
Type: "Get",
URL: ' valid.php ',
Data: "Username=admin",
DataType: "JSON",
Success:ajaxcomplete (Result),
Error:ajaxerror (response)});
});
}

Here are the valid.php
echo $_get[' username '];
?>

After triggering the login () method, the page error notice:undefined Index:username, meaning is not found this parameter, this is for what, solve!!


Reply to discussion (solution)

Data: "Username=admin", here is wrong or you data "username:admin"
or serialize it first.

You can't even write JS, how can you get the result?

function login () {  $.ajax ({    type: "Get",    URL: ' valid.php ',     data: "Username=admin",     dataType: " JSON ",     Success:ajaxcomplete,     error:ajaxerror  });}

Success and error require callback functions.
You either give the function a name, or you define the anonymous function directly
  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.