首页 > 代码库 > js 仿 asp中的 asc 和 chr 函数的代码

js 仿 asp中的 asc 和 chr 函数的代码

<script type="text/javascript">
var str;
var asc;

str = "A";
document.write(str.charCodeAt(0));
asc = 65;
document.write(String.fromCharCode(asc));
</script>

js 仿 asp中的 asc 和 chr 函数的代码