您好,登录后才能下订单哦!
这篇文章给大家分享的是有关怎么用oop的方法设计js脚本的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
jscript 是一种解释型的、基于对象的脚本语言。不能使用该语言来编写独立运行的应用程序,只能在某个解释器或“宿主”上运行,如 Active Server Pages(ASP)、Inte.NET 浏览器或者 windows 脚本宿主。
JScript 是一种宽松类型的语言,JScript 将根据需要自动进行转换。
Jscript 支持四种类型的对象:SCOnintrinsicobjects.htm">内置对象、生成的对象、宿主给出的对象(如 Internet 浏览器中的 window 和 document)以及 ActiveX 对象(外部组件)。
þ 属性:无;
þ 方法:无;
þ 例子:var outXml=new ActiveXObject("Microsoft.XMLdom");
þ 属性:constructor,length,prototype;
þ 方法:concat,join,reverse,slice,sort,toLocaleString,toString,valueOf;
þ 例子:
var my_array = new Array();
for (i = 0; i < 10; i++){
my_array[i] = i;
}
x = my_array[4];
þ 属性:constructor,prototype;
þ 方法:toString,valueOf;
þ 例子:
þ 属性:constructor,prototype;
þ 方法:getDate,getDay,getFullYear,getHours,getMilliseconds,getMinutes,getMonth,getSeconds,getTime,getTimezoneOffset,getUTCDate,getUTCDay,getUTCFullYear,getUTCHours,getUTCMilliSeconds,getUTCMinutes,getUTCMonth,getUTCSeconds,getVarDate,getYear,setDate,setFullYear,setHours,setMilliSeconds,setMinutes,setMonth,setSeconds,setTime,setUTCDate,setUTCFullYear,setUTCHours,setUTCMilliseconds,setUTCMinutes,setUTCMonth,setUTCSeconds,setYear,toGMTString,toLocaleString,toUTCString,toString,valueOf;静态方法(parse,UTC);
þ 例子:
þ 属性:arguments,caller,constructor,prototype;
þ 方法:toString,valueOf;
þ 例子:
þ 属性:Infinity,NaN;
þ 方法:escape,eval,isfinite,isNaN,parseFloat,parseInt,unescape;
þ 例子:
þ 属性:E,LN2,LN10,LOG2E,LOG10E,PI,SQRT1_2,SQRT2;
þ 方法:静态方法(abs,acos,asin,atan,atan2,ceil,cos,exp,floor,log,max,min,pow,random,round,sin,sqrt,tan);
þ 例子:
þ 属性:MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,constructor,prototype;
þ 方法:toString,valueOf,toLocaleString;
þ 例子:
þ 属性:constructor,prototype;
þ 方法:toString,valueOf,toLocaleString;
þ 例子:
þ 属性:$1...$9,index,input,lastIndex;
þ 方法:无;
þ 例子:
þ 属性:constructor,prototype,length;
þ 方法:anchor,big,blink,bold,charAt,charCodeAt,concat,fixed,fontcolor,fontsize,fromCharCode,indexOf,italics,lastIndexOf,link,match,replace,search,slice,small,split,strike,sub,substr,substring,sup,toLowerCase,toUpperCase,toString,valueOf;;
þ 例子:
注:*为页面中常用的内置对象。
//----------------------------例子1-----------------------------------------
function Circle (xPoint, yPoint, RADIUS) {
this.x = xPoint; // 圆心的 x 坐标。
this.y = yPoint; // 圆心的 y 坐标。
this.r = radius; // 圆的半径。
this.pi=Math.PI;
Circle.prototype.area=function(){
return this.pi * this.r * this.r;
}
}
function window_onload() {
var aCircle = new Circle(12,12,2);
alert(aCircle.area());
}
//----------------------------例子2-----------------------------------------
Object.prototype.x=0;
Object.prototype.y=0;
Object.prototype.r=1;
Object.prototype.pi=Math.PI;
Object.prototype.area=function(){
return this.pi * this.r * this.r;
}
Object.prototype.Create=function(xPoint,yPoint,radius){
this.x = xPoint; // 圆心的 x 坐标。
this.y = yPoint; // 圆心的 y 坐标。
this.r = radius; // 圆的半径。
}
function window_onload() {
var aCircle = new Object();
aCircle.Create(12,12,2);
alert(aCircle.area());
}
感谢各位的阅读!关于“怎么用oop的方法设计js脚本”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。