如何将注解选项添加到注解框中,以便注解显示在注解框下方?
我已经准备好了评论框,但只有这份附录不见了。
我的html...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Comment Box</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<input type="text" id="my-text" placeholder="Enter comment">
<p id="result"></p>
<button id="post">Post</button>
<ul id="unordered">
</ul>
<script src="code.js"></script>
</body>
</html>
我的...
var myText = document.getElementById("my-text");
var result = document.getElementById("result");
var limit = 140;
result.textContent = 0 + "/" + limit;
myText.addEventListener("input",function(){
var textLength = myText.value.length;
result.textContent = textLength + "/" + limit;
if(textLength > limit){
myText.style.borderColor = "#ff2851";
result.style.color = "#ff2851";
}
else{
myText.style.borderColor = "#b2b2b2";
result.style.color = "#737373";
}
});
我试着根据这个代码来解决它-https://linuxhint.com/create-comment-box-using-html-css-javascript/-但是我找不到一个解决方案,我不明白它是怎么做到的。有什么想法吗?
2条答案
按热度按时间3bygqnnd1#
我认为您必须使用和appendChild将li添加到ul的列表中
你要做的事情,你可以在其他网站上找到更多的帮助或信息,以“个人Twitter”或“待办事项列表”命名。它的其余代码看起来很好,但你只需要添加这个appendChild,在html中写入数据:)
您也可以使用this video,并使用它来指涉。
5us2dqdw2#
我终于找到了一个方法来让这个功能工作。但有这个问题,我需要能够提交几个评论下对方..现在当添加一个新的评论,它只是覆盖旧的。任何想法我应该添加什么?
HTML语言
JS系统