javascript當中Object用法
阿新 • • 發佈:2021-11-09
javascript當中Object用法
9)Object
例 3.9.1
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<script>
/*馬克-to-win:When the Global object is created, it always has at least the following properties:
Object object Function object Array object String object
Boolean object Number object Date object Math object
Value properties
*/
var oi = new Object();
oi.name = 'mark';
oi.height = 4;
function xxx()
{
document.writeln("物件的name屬性:" + this.name);
document.writeln("<br>");
document.writeln("物件的height屬性:" + this.height);
}
oi.list = xxx;
oi.list();
document.writeln(oi["name"] + oi["height"]);
</script>
更多內容請見原文,文章轉載自: https://blog.csdn.net/qq_44594249/article/details/100114754