あなたの助けが必要です、
「展開」ボタンを再クリックしたときに、どのように再最小化(テキストエリアのクラスを通常に戻す)できますか
私はそれを機能させることができますが、その逆はできません。
ここに私のHTML + Javascriptがあります
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.normal {
width: 400px;
height: 25px;
}
.expand {
height: 400px;
width: 400px;
}
</style>
<script type="text/javascript">
function expand() {
document.getElementById('subject_area').className = "expand"
document.getElementById('expand').value = "minimize"
}
</script>
</head>
<body>
<input class="normal" id="subject_area" type="textarea" >
<input id="expand" type="button" value="expand" onclick="expand()">
</body>
</html>