v。如果你敲不出来,可以用powershell用字符编码值,强转为char或者string,然后在新输出的一行(特殊字符往往无法显示或者异常显示,因为命令行窗口没有设置字体)点右键,再ctrl
v即可。
先把字母转换成对应的ASCII码,然后减去a(或A)的ASCII码值再加1就行了。<html>
<script type="text/javascript">
function change(){
var text=document.getElementById("textbox").value //获得文本值
var code = text.charCodeAt(0)//转换成ASCII码
var num
if(code<=90 &&code >=65){
num = code - 65+1
}else if(code<=122 &&code >=97){
num = code - 97+1
}
document.getElementById("textbox").value = num
}
</script>
<body>
<input type = "textbox" id = "textbox" >
<input type = "button" value = "替换" onclick = "change()"></>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)