最佳答案
我有以下 json 的对象:
{ "id": "109",
"No. of interfaces": "4" }
下面的行可以很好地工作:
alert(obj.id);
alert(obj["id"]);
但是如果键有空格,那么我就不能访问它们的值,例如。
alert(obj."No. of interfaces"); //Syntax error
我如何访问值,其键名有空格? 这是可能的吗?