我有一个具有动态输入字段的Bootstrap模态,我需要在关闭模态后清空所有字段值。(i)我需要在模态关闭后刷新它。
我已经尝试过clear();
和
$('body').on('hidden.bs.modal', '.modal', function () {
$(this).removeData('bs.modal');
});
但不为我工作。请您为此提出一个可行的解决方案。 在此先感谢。
答案 0 :(得分:1)
只需遍历模式中的每个输入并清除其值即可:
$('body').on('hidden.bs.modal', '.modal', function () {
$(this).removeData('bs.modal');
$(this).find("input").each(function(input) {
input.val("");
})(
});
希望这会有所帮助!