国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

JavaScript String(字符串)對(duì)象的簡(jiǎn)單實(shí)例(推薦)

2019-11-20 09:07:13
字體:
供稿:網(wǎng)友

返回字符串的長(zhǎng)度:

<html><body><script type="text/javascript">var txt="Hello World!"document.write(txt.length)</script></body></html>

為字符串添加樣式:

<html><body><script type="text/javascript">var txt="Hello World!"document.write("<p>Big: " + txt.big() + "</p>")document.write("<p>Small: " + txt.small() + "</p>")document.write("<p>Bold: " + txt.bold() + "</p>")document.write("<p>Italic: " + txt.italics() + "</p>")document.write("<p>Blink: " + txt.blink() + " (does not work in IE)</p>")document.write("<p>Fixed: " + txt.fixed() + "</p>")document.write("<p>Strike: " + txt.strike() + "</p>")document.write("<p>Fontcolor: " + txt.fontcolor("Red") + "</p>")document.write("<p>Fontsize: " + txt.fontsize(16) + "</p>")document.write("<p>Lowercase: " + txt.toLowerCase() + "</p>")document.write("<p>Uppercase: " + txt.toUpperCase() + "</p>")document.write("<p>Subscript: " + txt.sub() + "</p>")document.write("<p>Superscript: " + txt.sup() + "</p>")document.write("<p>Link: " + txt.link("http://www.w3school.com.cn") + "</p>")</script></body></html>

返回字符串中指定文本首次出現(xiàn)的位置 - indexOf()方法:

<html><body><script type="text/javascript">var str="Hello world!"document.write(str.indexOf("Hello") + "<br />")document.write(str.indexOf("World") + "<br />")document.write(str.indexOf("world"))</script></body></html>

效果如下:

查找字符串中特定的字符,若找到,則返回該字符 - match() 方法:

<html><body><script type="text/javascript">var str="Hello world!"document.write(str.match("world") + "<br />")document.write(str.match("World") + "<br />")document.write(str.match("worlld") + "<br />")document.write(str.match("world!"))</script></body></html>

效果如下:

 

替換字符串中的字符 - replace():

<html><body><script type="text/javascript">var str="Visit Microsoft!"document.write(str.replace(/Microsoft/,"W3School"))</script></body></html>

效果如下:

以上這篇JavaScript String(字符串)對(duì)象的簡(jiǎn)單實(shí)例(推薦)就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 阿城市| 乡宁县| 余姚市| 家居| 溆浦县| 阿拉善左旗| 房产| 衡水市| 嘉祥县| 阿尔山市| 礼泉县| 黄大仙区| 邮箱| 乐业县| 如皋市| 中西区| 北碚区| 临沭县| 伊宁市| 紫云| 宁武县| 盘锦市| 合山市| 德阳市| 曲麻莱县| 芒康县| 河源市| 鹿邑县| 家居| 鄱阳县| 晋城| 永靖县| 虹口区| 红桥区| 梅河口市| 南召县| 梧州市| 大洼县| 姚安县| 钟祥市| 鲁山县|