0

我有一个将用户数据注入 html 文件的函数

json格式是这样的:

{"Fname":"abc","LName":"cdf", "Phone":"123456";}

这是一个将数据注入 html 文件的函数:

function injectData(data){
    $.each(data, function(key, value) { 

    //notice that in the "data.value", I want 'value' to be a variable
    //so that when I loop over the array, data.value will become data.Fname,
    //and then data.LName and then data.Phone   
        $("#"+key).html(' ' + data.value +'');
});

如何在调用 data.value 之前强制 javascript 将“值”解释为变量,以便从 JSON 对象中获取实际值?这有点令人困惑。希望你能理解。谢谢

4

1 回答 1

0

写一些类似的东西:

for(key in data){ $("#"+key).html(' ' + data[key] +''); });
于 2013-04-07T06:03:27.867 回答