JS内置对象属性及方法大全_第1页
JS内置对象属性及方法大全_第2页
免费预览已结束,剩余5页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、学习好资料欢迎下载getTime()返回从1970年1月1号 0:0:0 到现在一共花去的毫秒数getTimezoneoffset()返回时区偏差值,即格林威治平均时间(GMT)与运行脚本的计算机所处时区设置之间相差的分钟数)返回在 Date 字符串中自从 1970 年 设置年份.2 位数或 4 位数 设置年份.4 位数设置月份(0-11) 设置日(1-31) 设置小时数 (0-23) 设 置 分 钟 数 (0-59) 设 置 秒 数(0-59)设置毫秒(0-999)依据国际时间来设置年份 依据国际时间来设置月(0-11)依据国际时间来设置日(1-31) 依据国际时间来设置小时 依据国际时间来

2、设置分钟 依据国际时间来设置秒 依据国际时间来设置毫秒设置从 1970 年 1 月 1 日开始的时间 根据格林威治时间将Date 对象的日期I.Date属性:con structor所建立对象的函数参考prototype能够为对象加入的属性和方法方法(43):getDay()getYear()getFullYear()getM on th()getDate()getHours() getMinu tes() getSecon ds()getMilliseconds()getUTCDay()返回一周中的第几天(0-6)返回年份.2000 年以前为 2 位,2000(包含)以后为 4 位 返回完整

3、的 4 位年份数返回月份数(0-11)返回日(1-31)返回小时数(0-23)返回分钟(0-59)返回秒数(0-59)返回毫秒(0-999)依据国际时间来得到现在是星期几(0-6)getUTCFullYear()getUTCM on th()getUTCDate()getUTCHours()getUTCMi nutes()getUTCSeconds()依据国际时间来得到完整的年份依据国际时间来得到月份(0-11) 依据国际时间来得到日(1-31) 依据国际时间来得到小时(0-23)依据国际时间来返回分钟(0-59)依据国际时间来返回秒(0-59)getUTCMilliseconds()依据国际

4、时间来返回毫秒(0-999)parse(dateStri ng)setYear(yearl nt)setFullYear(yearl nt)setMo nth(m on thInt) setDate(dateI nt)setHours(hourI nt)setMi nutes(mi nlnt)setSec on ds(secInt)1 月 1 日 00:00:00 以来的毫秒数.毫秒数(一个数值)转变成一个 GMT 寸间字setMilliseco nds(millil nt)setUTCFullYear(yearl nt)setUTCMo nth(mo nthl nt)setUTCDate(d

5、ateI nt)setUTCHours(hourI nt)setUTCMi nutes(mi nlnt)setUTCSeco nds(secl nt)setUTCMilliseco nds(millilnt) setTime(time Int)toGMTStri ng()学习好资料欢迎下载符串,如:Weds,15 June 1997 14:02:02 GMTtoUTCString()根据通用时间将一个Date 对象的日期转换为一个字符串toLocaleString()把 Date 对象的日期(一个数值)转变成一个字符串,使用所在计算机上配置使用的特定日期格式toSource()显示对象的源代码

6、toStri ng()将日期对象转换为字符串UTC(yyyy, mm, dd, hh, mm, ss, msec)返回从格林威治标准时间到指定时间的差距,单位为毫秒valueOf()返回日期对象的原始值方法:abs(x)返回数字的绝对值acos(x)返回数字的反余弦值asi n(x)返回数字的反正弦值ata n(x)返回位于-PI/2 和 PI/2的反正切值ata n2(y,x)返回(x,y )位于-PI 到 PI 之间的角度ceil(x)返回 x 四舍五入后的最大整数cos(x)返回一个数字的余弦值exp(x)返回 EAx 值floor(x)返回 x 四舍五入后的最小整数log(x)返回底数

7、为 E 的自然对数max(x,y)返回 x 和 y 之间较大的数mi n(x,y)返回 x 和 y 之间较小的数pow(x,y)返回 yAx 的值ran dom()返回位于 0 到 1 之间的随机函数roun d(x)四舍五入后取整sin(x)返回数字的正弦值sqrt(x)返回数字的平方根tan(x)返回一个角度的正切值toSource()显示对象的源代码valueOf()返回数学对象的原始值2.Math属性:con structorprototypeELN2LN10LOG2ELOG10EPISQRT1_2SQRT210所建立对象的函数参考 能够为对象加入的属性和方法欧拉常量,自然对数的底(约

8、等于 2.718)的自然对数(约等于 0.693)的自然对数以 2 为底的 e以 10 为底的n的值(约等于(约等于 2.302)的对数.(约等于 1.442)e的对数(约等于 0.434)3.14159)1/2(0.5) 的平方根(即 I 除以 2 的平方根,约等于 o.707)2的平方根(约等于 1.414)学习好资料欢迎下载3. Number属性:MAX_VALUEThe largest possible value a number in JavaScript can1.7976931348623157E+308MIN_VALUE The smallest possible value

9、 a nu mber in JavaScript can have 5E-324NaN Equal to a value that is not a nu mber.NEGATIVE_INFINITY A value that is less than MIN_VALUE.POSOTIVE_INFINITY A value that is greater than MAX_VALUE.prototype A static property of the Number object方法:toStri ngRetur ns a stri ng represe nti ng the specifie

10、d objectvalueOf()返回数学对象的原始值4. Boolea n属性:con structor所建立对象的函数参考prototype能够为对象加入的属性和方法方法:toSource()显示对象的源代码toString()将布尔值转换为字符串,并且返回结果valueOf()返回布尔对象的原始值5.Stri ng属性:con structor所建立对象的函数参考prototype能够为对象加入的属性和方法len gth返回字符串的字符长度方法(20):anchor(name)用来把字符串转换为HTML 锚点标记内()big()把字符串中的文本变成大字体()bli nk()把字符串中的文

11、本变成闪烁字体()bold()把字符串中的文本变成黑字体()fixed()把字符串中的文本变成固定间距字体,即电报形式()fon tcolor(color)设置字符串中文本的颜色 ()Fon tsize(size)把字符串中的文本变成指定大小()italics()把字符串中的文本变成斜字体()Link(url)用来把字符串转换-HTML 链接标记中()small()把字符串中的文本变成小字体()have学习好资料欢迎下载strike()把字符串中的文本变成划掉字体()sub()把字符串中的文本变成下标(subscript) 字体(SUB)sup()把字符串中的文本变成上标(superscrip

12、t) 字体()charAt(i ndex)返回指定索引处的字符charCodeAt(index)返回一个整数,该整数表示 String 对象中指定位置处的字符的Unicode编码con cat(stri ng2) 连接两条或多条字符串fromCharCode(num1, num2,,numN)获取指定的 Unicode 值并返回字符串in dexOf(searchStri ng, startI ndex)返回字符串中第一个出现指定字符串的位置lastl ndexOf(searchStri ng, startI ndex)返回字符串中最后一个出现指定字符串的位置match(regex)在字符串中

13、查找指定值replace(regex, n ewStri ng)将字符串中的某些字符替换成其它字符search(regex)针对某执行值对字符串进行查找slice(startI ndex, endln dex)将部分字符抽出并在新的字符串中返回剩余部分split(delimiter)将字符串分配为数组substr(startIndex, length)从 startIndex 取,取 length 个字符substri ng(start In dex,endln dex) 从 start In dex禾口 endln dex 之间的字符,不包括 endln dextoLowerCase()把字

14、符串中的文本变成小写toUpperCase()把字符串中的文本变成大写toSource()显示对象的源代码valueOf()返回字符串对象的原始值6.Array属性:con structor所建立对象的函数参考prototype能够为对象加入的属性和方法indexForan array created by a regular expression match, the zero-based indexof the match in the stri ng.in putForan array created by a regular expressi on match, reflects th

15、e origi nalstri ng aga inst which the regular expressi on was matched.length获取数组元素的个数,即最大下标加 1方法(13):concat(array1,arrayn)将两个或两个以上的数组值连接起来,合并后返回结果join(string)将数组中元素合并为字符串,string 为分隔符.如省略参数则直接合并,不再分隔pop()移除数组中的最后一个元素并返回该元素push(value)在数组的末尾加上一个或多个元素,并且返回新的数组长度值reverse()颠倒数组中元素的顺序,反向排列学习好资料欢迎下载shift()移

16、除数组中的第一个元素并返回该元素slice(start, deleteCou nt, item1, item2,.,itemN)返从一个数组中移除一个或多个元素,如果必要,在所移除元素的位置上插入新元素,返回所移除的元素sort(compare Function)在未指定排序号的情况下,按照元素的字母顺序排列,如果不是字符串类型则转换成字符串再排序,返回排序后的数组splice()为数组删除并添加新的元素toSource()显示对象的源代码toString()将数组所有元素返回一个字符串,其间用逗号分隔unshift(value)为数组的开始部分加上一个或多个元素,并且返回该数组的新长度val

17、ueOf()返回数组对象的原始值7. RegExp属性:$1, ., $9 Paren thesized substri ng matches, if any.$_See in put.$*See multili ne.$&See lastMatch.$+See lastPare n.$See leftCo ntext.$See rightCo ntext.global Whether or not to test the regular expressi on aga inst all possible matches in a string, or onlyagainst the

18、first.igno reCase Whether or not to ignore case while attempti ng a match in a stri ng.in putThe stri ng aga inst which a regular expressi on is matched.lastI ndex The in dex at which to start the n ext match.lastMatch The last matched characters.lastPare n The last pare nthesized substri ng match,

19、if any. leftC on text The substri ng precedi ng themost recent match. multil ine Whether or not to search in stri ngs across multiple lin es. rightC on textThe substri ng follow ing the most recent match.source The text of the patter n.方法:compile Compiles a regular expressi on object.exec Executes a

20、 search for a match in its stri ng parameter.test Tests for a match in its stri ng parameter8. F unction属性:argume nts An array corresp onding to the argume nts passed to a function. arity In dicates the number of argume nts expected by the fun cti on.callerSpecifies which fun ctio n called the curre

21、 nt fun ctio totype Allows the additi on of properties to a Function object.学习好资料欢迎下载方法:toStri ngRetur ns a stri ng represe nti ng the specified object.9.Object属性:con structor Specifies the function that creates an objects prototype. prototype Allows the additi on ofproperties to all objects.方法

22、:eval Evaluates a stri ng of JavaScript code in the con text of the specified object.toStri ngRetur ns a stri ng represe nti ng the specified object.unwatch Removes a watchpoint from a属性源 the object.valueOfRetur ns the primitive value of the specified object.watch Adds a watchpoint to a属性源 the objec

23、t.10.全局属性:Infin ity指定一个正负无穷大的数值NaN指定一个 “非数字” 值un defi ned指定一个未被赋值的变量 方法:decodeURI()为加密的 URI 进行解码decodeURIComponent()为加密的 URI 组件解码 en codeURI()将字符串加密为 URIencodeURIComponent()将字符串加密为 URI 组件escape(stri ng) unescape()加密一个字符串使用 escape()对一个字符串进行解码eval(stri ng)判断一个字符串并将其以脚本代码的形式执行nu mber(object) 11.事件属性:a.窗口事件,只在 body 和 frameset 元素中才有效onl oad页面或图片加载完成时onun load用户离开页面时b.表单元素事件,在表单元素中才有效onchangeon submiton reset框内容改变时点击提交按钮时 重新点击鼠标按键时isNaN(stri ng)Number()parseFloat(stri ng)parse In t(stri ng)检测一个值是否不是一个有限数字将一个对象的值转换为一个数字将一个字符串解析为一个浮点数字将一个字符串解析为一个整数,不是四舍五入操作,而是切尾isFin ite (number)检测一个值是

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论