简体   繁体   中英

accessing variables in jquery ajax

    var form_data = {
        username: $("#username").val(),
        password: $("#password").val(),
        is_ajax: 1
    };

    $.ajax({
        type: "POST",
        url: action,
        data: form_data,
        success: function(response) {
            if (response==username) {

I want to access username variable that i have declared in form_data variable. How can i? i am using $("#username").val() but i want to access the variable.

var form_data = {
        username: $("#username").val(),
        password: $("#password").val(),
        is_ajax: 1
    };

    $.ajax({
        type: "POST",
        url: action,
        data: form_data,
        success: function(response) {
            if (response==form_data.username) {

form_data.username is the variable you want

if (response == form_data.username) {

so in result, it will all look like

var form_data = {
    username: $("#username").val(),
    password: $("#password").val(),
    is_ajax: 1
};

$.ajax({
    type: "POST",
    url: action,
    data: form_data,
    success: function(response) {
        if (response == form_data.username) {

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM