JavaScript|对象
Posted Alan_Lowe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript|对象相关的知识,希望对你有一定的参考价值。
javascript|对象
和java类似,对象拥有属性和方法
属性通常写法为键值对:key:value ,类似于C++的map等容器
方法的申明是:方法名 : function(){}
举例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>对象</title>
</head>
<body>
<script>
var person = {
// 属性
name:"Alan_Lowe",
// 方法
SayHello : function(){
document.write(this.name + " " + "say hello to u!");
}
}
person.SayHello();
</script>
</body>
</html>
人生没有白走的路,每一步都算数!
以上是关于JavaScript|对象的主要内容,如果未能解决你的问题,请参考以下文章