gpt4 book ai didi

javascript - 将数组中的字符串拆分为子字符串

转载 作者:行者123 更新时间:2023-12-02 23:52:20 24 4
gpt4 key购买 nike

我有一个非常简单的问题。我有一个用户输入,来自用户输入的文本被插入一个数组,然后(理论上)它变成一个字符串,然后分成字符串中每个字符的数组。我的问题是如何将数组中的字符串拆分为数组 1 个字符长的子字符串。

let plaintext = document.getElementById("plaintext");
let startB = document.getElementById("start");

let plain = [];
let encryptStorage = [];

startB.addEventListener('click', () => {
plain.push(plaintext.value);
plain.toString();
encryptStorage.push(plain.split(''));
console.log(encryptStorage);
});
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<title>CryptoMatic</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<input type="text" id="plaintext" placeholder="Plaintext">
<div id="start">
<div id="startT">Start</div>
</div>
<script src="app.js"></script>
</body>

</html>

最佳答案

您不需要调用 .toString() 或数组。直接使用该值即可:

const startB = document.querySelector("#start");

const encryptStorage = [];

startB.addEventListener('click', () => {
const plaintext = document.querySelector('#plaintext');

encryptStorage.push(plaintext.value.split(''));
console.log(encryptStorage);
});
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CryptoMatic</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<input type="text" id="plaintext" placeholder="Plaintext">
<div id="start">
<div id="startT">Start</div></div>
<script src="app.js"></script>
</body>
</html>

关于javascript - 将数组中的字符串拆分为子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55583481/

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