JavaScript帮助手册-String对象

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

JavaScript帮助手册-String对象作者:stephen830做最棒的软件开发交流社区第1/71页本书由JavaEye提供的电子书DIY功能自动生成于2009-03-04目录1.JavaScript手册-目录1.1JavaScriptString对象参考手册(目录)...............................................42.JavaScript手册-String2.1JavaScriptString对象参考手册anchor()方法..........................................62.2JavaScriptString对象参考手册big()方法..............................................82.3JavaScriptString对象参考手册blink()方法............................................92.4JavaScriptString对象参考手册bold()方法...........................................102.5JavaScriptString对象参考手册charAt()方法..........................................112.6JavaScriptString对象参考手册charCodeAt()方法.....................................132.7JavaScriptString对象参考手册concat()方法..........................................152.8JavaScriptString对象参考手册fixed()方法...........................................172.9JavaScriptString对象参考手册fontcolor()方法.......................................182.10JavaScriptString对象参考手册fontsize()方法.......................................192.11JavaScriptString对象参考手册fromCharCode()方法.................................202.12JavaScriptString对象参考手册indexOf()方法.......................................222.13JavaScriptString对象参考手册italics()方法.........................................242.14JavaScriptString对象参考手册lastIndexOf()方法....................................252.15JavaScriptString对象参考手册link()方法...........................................272.16JavaScriptString对象参考手册localeCompare()方法.................................282.17JavaScriptString对象参考手册match()方法.........................................30页2.18JavaScriptString对象参考手册replace()方法........................................332.19JavaScriptString对象参考手册search()方法.........................................372.20JavaScriptString对象参考手册slice()方法...........................................402.21JavaScriptString对象参考手册small()方法..........................................432.22JavaScriptString对象参考手册split()方法...........................................442.23JavaScriptString对象参考手册strike()方法..........................................472.24JavaScriptString对象参考手册sub()方法...........................................482.25JavaScriptString对象参考手册substr()方法.........................................492.26JavaScriptString对象参考手册substring()方法......................................522.27JavaScriptString对象参考手册sup()方法...........................................552.28JavaScriptString对象参考手册toLocaleLowerCase()方法.............................562.29JavaScriptString对象参考手册toLocaleUpperCase()方法.............................582.30JavaScriptString对象参考手册toLowerCase()方法...................................602.31JavaScriptString对象参考手册toSource()方法......................................612.32JavaScriptString对象参考手册toUpperCase()方法...................................632.33JavaScriptString对象参考手册toString()方法.......................................642.34JavaScriptString对象参考手册valueOf()方法.......................................652.35JavaScriptString对象参考手册constructor属性.....................................662.36JavaScriptString对象参考手册length属性..........................................682.37JavaScriptString对象参考手册prototype属性.......................................70页1.1JavaScriptString对象参考手册(目录)发表时间:2009-03-03关键字:javascriptstring对象参考手册(目录)JavaScriptString对象参考手册字符串是JavaScript的一种基本的数据类型。String对象的length属性声明了该字符串中的字符数。String类定义了大量操作字符串的方法。需要注意的是,JavaScript的字符串是不可变的,String类定义的方法都不能改变字符串的内容。注:FF=Firefox,N=Netscape,IE=InternetExplorerString对象的方法方法描述FFNIEanchor()创建HTML锚。123big()用大号字体显示字符串。123blink()显示闪动字符串。12bold()使用粗体显示字符串。123charAt()返回在指定位置的字符。123charCodeAt()返回在指定的位置的字符的Unicode编码。144concat()连接字符串。144fixed()以打字机文本显示字符串。123fontcolor()使用指定的颜色来显示字符串。123fontsize()使用指定的尺寸来显示字符串。123fromCharCode()从字符编码创建一个字符串。144indexOf()检索字符串。123italics()使用斜体显示字符串。123lastIndexOf()从后向前搜索字符串。123对象参考手册(目录)第4/71页link()将字符串显示为链接。123localeCompare()用本地特定的顺序来比较两个字符串。144match()找到一个或多个正在表达式的匹配。144replace()替换与正则表达式匹配的子串。144search()检索与正则表达式相匹配的值。144slice()提取字符串的片断,并在新的字符串中返回被提取的部分。144small()使用小字号来显示字符串。123split()把字符串分割为字符串数组。144strike()使用删除线来显示字符串。123sub()把字符串显示为下标。123substr()从起始索引号提取字符串中指定数目的字符。144substring()提取字符串中两个指定的索引号之间的字符。123sup()把字符串显示为上标。123toLocaleLowerCase()把字符串转换为小写。---toLocaleUpperCase()把字符串转换为大写。---toLowerCase()把字符串转换为小写。123toUpperCase()把字符串转换为大写。123toSource()代表对象的源代码。14-toString()返回字符串。---valueOf()返回某个字符串对象的原始值。124String对象的属性属性描述FFNIEconstructor对创建该对象的函数的引用144length字符串的长度123prototype允许您向对象添加属性和方法124对象参考手册(目录)第5/71页2.1JavaScriptString对象参考手册anchor()方法发表时间:2009-02-28关键字:javascriptstring对象参考手册anchor()方法JavaScriptanchor()方法返回JavaScriptString对象参考手册(目录)定义和用法anchor()方法用于创建HTML锚。stringObject.anchor(anchorname)参数描述anchorname必需。为锚定义名称。实例在本例中,我们会为文本添加一个锚:scripttype=text/javascriptvartxt=Helloworld!document.write(txt.anchor(myanchor))/script上面的代码将输出为纯粹的HTML:aname=myanchorHelloworld!/a

1 / 71
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功