我在从变量中设置对象键和值时遇到问题,如果我仅设置键或仅从变量中设置值,如果我从变量中设置它们都不起作用,则它可以正常工作。
这工作正常
$(":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
});
});