gpt4 book ai didi

jquery - 刷新 jquery 移动文本输入

转载 作者:行者123 更新时间:2023-12-01 03:02:20 25 4
gpt4 key购买 nike

我已经使用 JQM 工作了几周,在研究了各种示例并阅读了文档之后,我似乎找不到在成功回调中刷新文本输入的方法。 v1.0b2 可以实现这一点吗?我可以刷新(重置)其他元素,但不能刷新(重置)文本输入。任何帮助,将不胜感激。谢谢

最佳答案

示例:

JS

$('#reset').click(function() {
$('.resetMe').val('');
$("input[name='checkbox-1']").attr("checked",false).checkboxradio("refresh");
$("input[name='radio-choice-1']").attr("checked",false).checkboxradio("refresh");
});

HTML

<div data-role="page" id="home"> 
<div data-role="content">
<div data-role="fieldcontain">
<label for="name">Text Input:</label>
<input type="text" name="name" id="name" value="" class="resetMe" />
</div>
<div data-role="fieldcontain">
<label for="textarea">Textarea:</label>
<textarea cols="40" rows="8" name="textarea" id="textarea" class="resetMe"></textarea>
</div>
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<legend>Agree to the terms:</legend>
<input type="checkbox" name="checkbox-1" id="checkbox-1" />
<label for="checkbox-1">I agree</label>
</fieldset>
</div>
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<legend>Choose a pet:</legend>
<input type="radio" name="radio-choice-1" id="radio-choice-1" value="choice-1" />
<label for="radio-choice-1">Cat</label>

<input type="radio" name="radio-choice-1" id="radio-choice-2" value="choice-2" />
<label for="radio-choice-2">Dog</label>

<input type="radio" name="radio-choice-1" id="radio-choice-3" value="choice-3" />
<label for="radio-choice-3">Hamster</label>

<input type="radio" name="radio-choice-1" id="radio-choice-4" value="choice-4" />
<label for="radio-choice-4">Lizard</label>
</fieldset>
</div>
<a href="#" data-role="button" id="reset">Reset button</a>
</div>
</div>

关于jquery - 刷新 jquery 移动文本输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7527731/

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