gpt4 book ai didi

javascript - 使用按钮清除文本区域和输入的值

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

我正在尝试放置一个脚本,您可以在其中通过单击按钮清除输入和文本区域的值。我在 Web 上复制了一个可以清除我的输入的脚本,它有效但我如何在其中包含文本区域?

这是脚本:

$("#btnpost").click(function(){
var inp = $("input");
if(inp.val()) {
inp.val('');
}
});

<input type="email" class="form-control" id="inputEmail3" placeholder="Insert Title Here">
<textarea class="form-control " rows="5" placeholder="Insert Content Here"></textarea>
<button type="button" class="btn btn-primary" id="btnpost">

发布

最佳答案

$(document).ready(function(){
$("#btnpost").click(function(){
$('input ,textarea').each(function(){
if($(this).val() !=""){
$(this).val() = "";
}
});
});
});

关于javascript - 使用按钮清除文本区域和输入的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32940873/

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