gpt4 book ai didi

javascript - 使用 charAt 制作 secret 语言

转载 作者:行者123 更新时间:2023-12-03 05:49:45 25 4
gpt4 key购买 nike

当我单击按钮时,我需要创建一个文本框,其中包含一个单词,该单词需要使用 charAt 将其转换为数字,并且该数字需要获得+2,然后转换回单词,并且该单词需要收到警报我不知道该怎么办,我发现这真的很难,我做了一个无用的功能,但我只是想向你展示我做了什么,请帮忙:)

    function codeer(){

var woord2 = document.getElementById("woord")
var woordterug = woord2.charAt(0)
var woord234 = document.getElementById("woord");
var woord23 = woord234.charAt(str.length+2);

}

最佳答案

您可以通过 String#charCodeAt 获取字符代码从字符添加两个并用 String.fromCharCode 构建一个新字符串.

function codeer() {
var woord = document.getElementById("woord").value,
coded = '',
i;

for (i = 0; i < woord.length; i++) {
coded += String.fromCharCode(woord.charCodeAt(i) + 2);
}
console.log(coded);
}
<input id="woord" /> <button onclick="codeer()">cooder</button>

关于javascript - 使用 charAt 制作 secret 语言,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40200674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com