$.post("test.php", { name: "John", time: "2pm" },
function(data){
alert("Data Loaded: " + data);
});
该对象{ name: "John", time: "2pm" }
是匿名的。通常,我会使用类似于以下的语法访问对象的属性:
objectname.propertyname
但是没有时我能做什么objectname
?我怎样才能访问propertyname
?
$.post("test.php", { name: "John", time: "2pm" },
function(data){
alert("Data Loaded: " + data);
});
该对象{ name: "John", time: "2pm" }
是匿名的。通常,我会使用类似于以下的语法访问对象的属性:
objectname.propertyname
但是没有时我能做什么objectname
?我怎样才能访问propertyname
?