The Asc function converts the first letter in a string to ANSI code, and returns the result.
Asc 函数可返回与字符串的第一个字母对应的 ANSI 字符代码
语法
参数 | 描述 |
string | Required. A string expression. Cannot be an empty string! 必选项。string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。 |
实例 1
document.write(Asc("A") & "<br />") document.write(Asc("F")) 输出: 65 70 |
实例 2
document.write(Asc("a") & "<br />") document.write(Asc("f")) 输出: 97 102 |
实例 3
document.write(Asc("W") & "<br />") document.write(Asc("W3Schools.com")) 输出: 87 87 |
实例 4
document.write(Asc("2") & "<br />") document.write(Asc("#")) 输出: 50 35 |