我无法从bootstrap模态中清除表单数据
我试图清除引导模态数据时有一点问题..有我的模态。
这是js函数:
$('body').on('hide.bs.modal', '.modal', function () { &(this).removeData('bs.modal'); });
但当我关闭并重新打开模态时,数据仍然存在。 我怎么解决呢?
谢谢。
您可以使用$(form).trigger('reset')
重置所有输入数据
$('body').on('hide.bs.modal', '.modal', function () { $('#form-alias-dominio').trigger("reset"); //here your form_id });
我能够清除这样做的数据
$('body').on('hide.bs.modal', '.modal', function (e) { $(this).find('form').trigger("reset"); });
谢谢@Sadikhasan