gpt4 book ai didi

javascript - 使用 javascript 添加带有文本组件的 li 元素

转载 作者:行者123 更新时间:2023-12-03 06:39:57 30 4
gpt4 key购买 nike

这就是我到目前为止所做的 - 但我还需要处理和清空评论,提交后清除字段并发布多个评论。其实我并不想要答案——只是提示我需要去哪里寻找以及我是否完全偏离了基地。

function registerClickHandler() {
var commentButton = document.getElementByID('postComment');
commentButton.onclick = addComment();
}

function addComment() {
var list = document.getElementByID('commentList');
var commentContent = document.getElementByID('comment')
var newComment = document.createElement('li');

newComment.appendChild(document.createTextNode(commentContent));
list.appendChild(newComment);
}
<小时/>
<ul id='commentList'>
</ul>
<form>
<input type='text' id='comment'/>
<input type='button' id='postComment' value='Post'/>
</form>

最佳答案

看看这段代码working example ,基本上你有语法错误:

change all ocurrencies of getElementByID for getElementById

document.getElementByID('postComment');

对于

document.getElementById('postComment');

And call the function which define the click handler

registerClickHandler();

Get the value for the element

var commentContent = document.getElementById('comment').value;

关于javascript - 使用 javascript 添加带有文本组件的 li 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38002355/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com