从变量设置对象键

时间:2012-10-12 17:52:44

标签: javascript jquery

  

可能重复:
  in javascript is it possible to construct an object literal with expressions evaluating to strings for property names?

我在设置变量中的对象键和值时遇到问题,如果我只设置键或只是变量中的值,如果我从变量设置它们不起作用它就可以正常工作。

这很好用

 $(":input").change(function () { 

    var currentId = $(this).attr('id');
    var currentval = $(this).attr('value');

    $.post("/inside/update.php", {
        "profile_age":currentval 
    });
});

此配置不起作用

$(":input").change(function () { 

    var currentId = $(this).attr('id');
    var currentval = $(this).attr('value');

    $.post("/inside/update.php", {
        currentId:currentval 
    });
});

1 个答案:

答案 0 :(得分:1)

试试这个:

var options = {};
options[currentId] = currentval; 
$.post("/inside/update.php", options);