gpt4 book ai didi

html - jQuery 清除 Div 中的值

转载 作者:搜寻专家 更新时间:2023-10-31 22:04:06 27 4
gpt4 key购买 nike

我有一个包含许多输入文本的 DIV。

我需要 jQuery 1.3.2 中的一种方法来清除输入 onclick 中的所有值。

因此,当我单击特定链接时,该 DIV 内的所有输入值都将被清除。

我没有任何示例代码,我只需要知道是否有一种方法可以清除特定 DIV 内(不是在 FORM 中,而是在 DIV 中)的所有输入值。

最佳答案

是的,有

像这样的html

<div id="div_id">
<input type="text" value="foo" />
<input type="text" value="foo" />
<input type="text" value="foo" />
<input type="text" value="foo" />
</div>

然后是 jQuery

$('#div_id input[type="text"]').val('');

working demo

关于html - jQuery 清除 Div 中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6230303/

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