js為字串新增樣式

2021-06-03 12:35:29 字數 1031 閱讀 5329

var txt="hello world!"

1.放大

document.write("big: " + txt.big() + "

") 

2.縮小

document.write("small: " + txt.small() + "

")3.加粗

document.write("bold: " + txt.bold() + "

")4.斜體

document.write("italic: " + txt.italics() + "

")5.閃爍

document.write("blink: " + txt.blink() + " (does not work in ie)

")6.固定

document.write("fixed: " + txt.fixed() + "

")7.中橫線

document.write("strike: " + txt.strike() + "

")8.設定字型顏色

document.write("fontcolor: " + txt.fontcolor("red") + "

")9.設定置頂大小

document.write("fontsize: " + txt.fontsize(16) + "

")10.轉換為小寫

document.write("lowercase: " + txt.tolowercase() + "

")11.轉換為大寫

document.write("uppercase: " + txt.touppercase() + "

")12.居中

document.write("subscript: " + txt.sub() + "

")13.居上

document.write("superscript: " + txt.sup() + "

")14.鏈結

document.write("link: " + txt.link("") + "

")

JS 分割字串,判斷字串是否為數字

if document.getelementbyid partnernames value if document.getelementbyid activename value if document.getelementbyid activemoney value if re.test docu...

js 字串減去字串 js 減去字串

redd.config裡面的時間戳和隨機字串是哪個簽名的時間戳和隨機字串 貼給你,你就明白拉。前台js獲取timestamp var d new date var timestamp date.parse d 當前日期減去1970年1月1號的值 後台獲取簽名,即signature,其中nocestr...

c 字串新增字元 C 字串

在 c 語言中,字串實際上是使用null字元 0 終止的一維字元陣列。因此,乙個以 null 結尾的字串,包含了組成字串的字元。下面的宣告和初始化建立了乙個 hello 字串。由於在陣列的末尾儲存了空字元,所以字元陣列的大小比單詞 hello 的字元數多乙個。char greeting 6 依據陣列...