我目前正在尝试将 JavaScript 变量设置为输入到第一个<textarea>
标签中的任何内容,但它不起作用,而且我不知道如何修复它,因为我对 JavaScript 没有太多经验。非常感谢任何人的帮助。我没有尝试过任何其他的事情,因为我想不出有什么可以尝试的。
var t = document.getElementById("text").value
function func() {
document.getElementById("ascii").value = t;
}
.con {
display: flex;
margin-top: 2px;
margin-left: 20px;
}
.button {
background: #4CAF50;
border: none;
outline: none;
color: #ffffff;
padding: 14px;
height: 60px;
width: 140px;
border-radius: 0 10px;
margin-top: 0px;
font-size: 22px;
cursor: pointer;
}
.txt {
display: flex;
margin-right: 20px;
background: #ffffff;
border: 0;
outline: none;
height: 700px;
width: 45%;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(141, 105, 105, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-top: 0px;
}
.text {
border: none;
margin-top: 18px;
margin-left: 18px;
height: 660px;
width: 630px;
outline: none;
font-size: 22px;
resize: none;
}
.asci {
background: #ffffff;
border: 0;
outline: none;
height: 700px;
width: 45%;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(141, 105, 105, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.ascii {
border: none;
margin-top: 20px;
margin-left: 10px;
height: 660px;
width: 640px;
outline: none;
font-size: 22px;
resize: none;
}
<html>
<head>
<title>alphabetical order machine</title>
<link rel="stylesheet" href="ascii.css">
</head>
<body>
<div class="con">
<!--button onclick="func()">button</button-->
<form class="txt">
<textarea class="text" id="text" type="text" placeholder="type your text here!"></textarea>
<input class="button" type='button' value="alphabetize" onclick="func()">
</form>
<form class="asci">
<textarea class="ascii" id="ascii" type="text"></textarea>
</form>
</div>
<script src="ascii.js"></script>
</body>
</html>
杨魅力
ABOUTYOU
largeQ
相关分类