作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个非常简单的问题。我有一个用户输入,来自用户输入的文本被插入一个数组,然后(理论上)它变成一个字符串,然后分成字符串中每个字符的数组。我的问题是如何将数组中的字符串拆分为数组 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/
我是一名优秀的程序员,十分优秀!