如何访问匿名对象的属性?

发布于 2024-07-25 02:05:33 字数 348 浏览 6 评论 0原文

$.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);
  });

The object { name: "John", time: "2pm" } is anonymous. Normally, I would access the properties of an object using syntax similar to the following:

objectname.propertyname

But what can I do when there is no objectname? How can I access propertyname?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩人痒 2024-08-01 02:05:33

匿名对象的全部意义在于它就是匿名的。 它只能在上下文中访问。 如果稍后想访问该对象,则需要将该对象分配给变量。

尝试:

var obj = { name: "John", time: "2pm" };
$.post("test.php", obj,
  function(data){
    alert("Data Loaded: " + data);
    alert("obj name is " + obj.name);
  });

The whole point of an anonymous object is that it is just that, anonymous. It is accessed in context only. If you want to access the object later on, then you need to assign the object to a variable.

Try:

var obj = { name: "John", time: "2pm" };
$.post("test.php", obj,
  function(data){
    alert("Data Loaded: " + data);
    alert("obj name is " + obj.name);
  });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文