JavaScript中创建对象

注意以下两点:
1、在对象的方法内调用其他方法时,别忘记了要加this。
2、方法之间使用","号进行分隔,而非";"号。

创建对象如下:

var func={

 $:function(id)
 {
  return document.getElementById(id);
 },
 
 f:function(id)
 {
  return this.$(id).value;
 },
 
 s:function(id,value)
 {
  this.$(id).value=value;
 }
}

你可能感兴趣的:(JavaScript中创建对象)