- 相关推荐
Javascript自定义类型的几种方法小结
1. 定义类型
复制代码 代码如下:
function UserObject(parameter) {
}
parameter 可省略,相当于C#中构造函数参数。
2. 实例化自定义类型
复制代码 代码如下:
function userobject(parameter){
}
//myobject is now an object of type userobject!
var myobject=new userobject("hi")
alert(myobject)
3. 添加属性
复制代码 代码如下:
function userobject(parameter){
this.firstproperty=parameter
this.secondproperty="This is the second property"
}
//使用
复制代码 代码如下:
var myobject=new userobject("hi there.")
//alerts "hi there."
alert(myobject.firstproperty)
//writes "This is the second property"
document.write(myobject.secondproperty)
4.添加方法 (circle类)
复制代码 代码如下:
//first method function
function computearea(){
var area=this.radius*this.radius*3.14
return area
}
//second method function
function computediameter(){
var diameter=this.radius*2
return diameter
}
关联到自定义类型:
复制代码 代码如下:
/*the below creates a new object, and gives it the two methods defined earlier*/
function circle(r){
//property that stores the radius
this.radius=r
this.area=computearea
this.diameter=computediameter
}
使用自定义方法:
复制代码 代码如下:
var mycircle=new circle(20)
//alerts 1256
alert("area="+mycircle.area())
//alerts 400
alert("diameter="+mycircle.diameter())
【Javascript自定义类型的几种方法小结】相关文章:
javascript跨域访问的方法07-19
公文类型有几种11-08
摄影构图的几种基本方法05-15
几种小哑铃的锻炼方法06-19
几种蛋糕卷的制作方法12-23
奶茶店几种饮品的制作方法07-30
常见的几种网络故障与诊断方法09-03
马克笔着色的几种方法12-19
Win7几种环境下的安装方法07-19
如何调试javascript脚本呢07-19