我正在嘗試創建發佈系統。它有點作品,但問題是,每次用戶輸入新文本,舊文本被取代。我一直在試圖解決這個問題,但沒有多少運氣。我正在使用HTML5,CSS3和JavaScript的組合我正在使用CodePen,所以文件之間的框架和鏈接已經爲我自動編碼。如何使新的輸入顯示在新行上而不是替換舊的輸入
HTML:
<form id="post" name="write">
<div class="textbox">
<input class="postwriter" name="post" type="text" placeholder="What's on your mind?" id="myPost">
<button id="Post" onclick= "return write_below(this); return resetIn();" value="submit">Post</button>
</div>
</form>
<div class="posts" id="postDisplay">
<p><span id='display'></span></p>
</div>
CSS:
* {
margin: 0;
padding: 0;
border: 1px solid black;
background-color: #8ec7f9;
}
body {
height: absolute;
padding-top: 20%;
padding-bottom: 20%;
padding-left: 10%;
padding-right: 10%;
}
#post {
margin: auto;
}
#post .textbox {
height: 100px;
}
#post .textbox .postwriter {
width: 94.3%;
height: 96%;
background-color: hsla(0, 0%, 95%, 1);
font-size: 140%;
}
#post .textbox #Post {
height: 100%;
width: 5%;
cursor: pointer;
background-color: #c78fff;
border-radius: 5%;
font-size: 20px;
}
.posts {
height: 100px;
font-family: Arial, sans-serif;
font-size: 110%;
}
.posts #display{
margin: auto;
}
的JavaScript:
function write_below(form) {
var input = document.forms.write.post.value;
document.getElementById('display').innerHTML = input;
return false;
}
function resetIn(){
document.getElementById("myPost");
input.reset();
}