JScript 方法 - fromCharCode 方法
發(fā)表時(shí)間:2024-01-04 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]從一些 Unicode 字符值中返回一個(gè)字符串。 String.fromCharCode([code1[, code2[, ...[, codeN]]]]) 參數(shù) String 必選項(xiàng)。為 String 對(duì)象。 code1, . . . , codeN 可選項(xiàng)。是要轉(zhuǎn)換為字符串的 Unicode ...
從一些 Unicode 字符值中返回一個(gè)字符串。
String.fromCharCode([code1[, code2[, ...[, codeN]]]])
參數(shù)
String
必選項(xiàng)。為 String 對(duì)象。
code1, . . . , codeN
可選項(xiàng)。是要轉(zhuǎn)換為字符串的 Unicode 字符值序列。如果沒(méi)有給出參數(shù),結(jié)果為空字符串。
說(shuō)明
在調(diào)用 fromCharCode 前不必創(chuàng)建 String 對(duì)象。
在下面的例子中,test 包含字符串 "plain":
var test = String.fromCharCode(112, 108, 97, 105, 110);
要求
版本 3