JavaScript |对象方法
JavaScript 中的对象方法可以通过函数来访问。 JavaScript 中的函数存储为属性值。也可以不使用方括号 () 来调用对象。
- 在方法中,“this”指的是所有者对象。
- 附加信息也可以与对象方法一起添加。
句法:
objectName.methodName()
属性:一个函数可以分为不同的属性值,然后将它们组合在一起并返回。
例如:学生函数包含以下属性:
- 姓名
- 班级
- 部分
返回值:它返回存储为对象属性的方法/函数。
示例 1:此示例使用函数定义作为属性值。
HTML
JavaScript Object Methods
Geeks
JavaScript Object Method
studentDetail is a function definition,
it is stored as a property value.
HTML
JavaScript Object Methods
Geeks
JavaScript Object Method
studentDetail is a function definition,
it is stored as a property value.
Function definition is returned
if we don't use ().
HTML
JavaScript Object Methods
Geeks
JavaScript Object Method
studentDetail is a function definition,
it is stored as a property value.
输出:
示例 2:此示例使用存储属性值和不使用括号 () 进行访问。
HTML
JavaScript Object Methods
Geeks
JavaScript Object Method
studentDetail is a function definition,
it is stored as a property value.
Function definition is returned
if we don't use ().
输出:
示例 3:使用函数定义作为属性值并使用其他详细信息进行访问。
HTML
JavaScript Object Methods
Geeks
JavaScript Object Method
studentDetail is a function definition,
it is stored as a property value.
输出:
支持的浏览器:
- 谷歌浏览器
- 微软边缘
- 火狐
- 苹果浏览器