本文實例講述了JavaScript字符串對象(string)基本用法。分享給大家供大家參考,具體如下:
公司專注于為企業(yè)提供網(wǎng)站建設(shè)、做網(wǎng)站、微信公眾號開發(fā)、商城系統(tǒng)網(wǎng)站開發(fā),成都小程序開發(fā),軟件按需策劃設(shè)計等一站式互聯(lián)網(wǎng)企業(yè)服務(wù)。憑借多年豐富的經(jīng)驗,我們會仔細了解各客戶的需求而做出多方面的分析、設(shè)計、整合,為客戶設(shè)計出具風格及創(chuàng)意性的商業(yè)解決方案,創(chuàng)新互聯(lián)建站更提供一系列網(wǎng)站制作和網(wǎng)站推廣的服務(wù)。
1.獲取字符串的長度:
var s = "Hello world"; document.write("length:"+s.length);
2.為字符串添加各種樣式,如:
var txt = "Some words"; document.write("Big: " + txt.big() + "
") document.write("Small: " + txt.small() + "
") document.write("Bold: " + txt.bold() + "
") document.write("Italic: " + txt.italics() + "
") document.write("Blink: " + txt.blink() + " (does not work in IE)
") document.write("Fixed: " + txt.fixed() + "
") document.write("Strike: " + txt.strike() + "
") document.write("Fontcolor: " + txt.fontcolor("Red") + "
") document.write("Fontsize: " + txt.fontsize(16) + "
") document.write("Link: " + txt.link("https://www.jb51.net") + "
")
3.獲取字符串中部分內(nèi)容首次出現(xiàn)的位置:
var hw_text = "Hello world"; document.write(hw_text.indexOf("Hello")+"
"); document.write(hw_text.indexOf("world")+"
"); document.write(hw_text.indexOf("abc")+"
");
4.內(nèi)容替換:
var str="Visit Microsoft!" document.write(str.replace(/Microsoft/,"W3School"))
效果圖:
示例代碼:
Javascript 字符串對象 (一)length屬性:獲取字符串的長度
Hello world, Hello javascript!
(二)為字符串添加樣式
對字符串調(diào)用樣式的相關(guān)方法時,會自動拼接相應(yīng)的html標簽
some words
(三)indexOf方法:定位字符串中某一個指定的字符首次出現(xiàn)的位置
(四)replace()方法:替換字符串中的部分內(nèi)容
更多關(guān)于JavaScript相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《JavaScript替換操作技巧總結(jié)》、《JavaScript查找算法技巧總結(jié)》、《JavaScript數(shù)據(jù)結(jié)構(gòu)與算法技巧總結(jié)》、《JavaScript遍歷算法與技巧總結(jié)》、《JavaScript中json操作技巧總結(jié)》、《JavaScript錯誤與調(diào)試技巧總結(jié)》及《JavaScript數(shù)學運算用法總結(jié)》
希望本文所述對大家JavaScript程序設(shè)計有所幫助。