JavaScript String charCodeAt() 方法**实例** 返回字符串第一个字符的Unicode 编码: ```js var str = "HELLO WORLD"; var n = str.charCodeAt(0); ``` _n_ 输出结果: ...
確定! 回上一頁