- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只是想固化(确定)什么是js对象、方法和属性。到目前为止,这是我自己的观点,但我几乎没有怀疑,这就是为什么我来这里是为了了解并证明我需要的是真实的。
var property= "is this a property?";
function method(){"is this a method?"};
var ObjectLiteral = {property:"this should be a property of this ObjectLiteral I guess", method:function(){"this should be a method of ObjectLiteral am I right?"}};
//Here is the cache:
var Cachie = {method : function SecondObject(){/*nothing in here just a regular function or object*/},objecto:function(){alert("is this a method or object of Cachie object if so methods and properties are functions and variables")}};
Cachie.objecto();//than what is objecto related to Cachie and what is objecto called related Cachie is it an object of Cachie by the way, or is just simply called an object and nothing else of Cachie whatsoever?
最佳答案
事实上,在 Javascript 中,对象字面量是对象的零对或多对属性名称和关联值的列表,括在大括号 ({}) 中。
您可以看看The MDN Specification for Object Literals欲了解更多信息。
在你的情况下,如果你写:
var Cachie = {method : function SecondObject(){/*nothing in here just a regular function or object*/},objecto:function(){alert("is this a method or object of Cachie object if so methods and properties are functions and variables")}};
Cachie.objecto();
意味着:
您有一个名为 Cachie
的文字对象,它具有两个属性:method
和 objecto
,它们是此处的函数,用于回答您的问题objecto 与 Cachie 相关是什么?,objecto
是 Cachie
对象的函数和属性。
因此,当您调用 Cachie.objecto()
时,您只需调用对象 Cachie
的属性 objecto
中的函数。
关于javascript - 巩固 JavaScript 对象、方法和属性的知识,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36304683/
我正在尝试使用 Thymeleaf 来巩固一对多关系。让我们保持简单。我确实有一个 thiesis,thiesis 有一些问题。 @Entity public class Thiesis {
我有一个依赖项(cookie 实用程序)的项目依赖于 iron >= 0.3, 这(通常)改变了包对 iron 的依赖以匹配我正在使用的包,并消除了对 iron 的无关依赖 0.4 . (奇怪的是,
我只是想固化(确定)什么是js对象、方法和属性。到目前为止,这是我自己的观点,但我几乎没有怀疑,这就是为什么我来这里是为了了解并证明我需要的是真实的。 var property= "is this a
我是一名优秀的程序员,十分优秀!