gpt4 book ai didi

javascript - 如何清除文本区域输入中的文本?

转载 作者:行者123 更新时间:2023-11-28 13:37:28 25 4
gpt4 key购买 nike

我有以下表单,我想在关闭表单时清除所有用户输入。我使用以下 JQ 函数执行此操作,但是 textarea 元素不会以相同的方式清除(#reply 只能使用 .val("") 清除)。我不明白为什么会这样。

HTML
<div class="form" id="form">
<form id="postandreply" action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method="post" >
<div id="textarea">
<label for="posttopic">Topic</label>
<textarea id="posttopic" name="posttopic" maxlength="100" cols="50" rows="3"></textarea>
<label for="comment">Comment</label>
<textarea id="comment" name="posttext" maxlength="500" cols="80" rows="6"></textarea>
<label for="reply">Reply</label>
<textarea id="reply" name="replytext" maxlength="500" cols="80" rows="6"></textarea>
</div>

<input type="text" id="lookup" name="reply-lookup" />
<input type="submit" id="submit" name="post" value="Post" />

</form>
</div>

JQ
// -------------------------reset the forms -------------------------
function reset(formhtml) {

$('#posttopic, #comment, #reply').text(""); //will not clear #reply
$('#lookup, #reply').val(""); //this will clear #reply

}

最佳答案

.val() 是获取输入数据的主要方法。这是来自 http://api.jquery.com/val/ 的引用.

The .val() method is primarily used to get the values of form elements such as input, select and textarea. In the case of elements, the .val() method returns an array containing each selected option; if no option is selected, it returns null.

.text() 不起作用,因为 textarea 仍然是输入。

关于javascript - 如何清除文本区域输入中的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20411764/

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