【发布时间】:2016-11-23 18:21:30
【问题描述】:
我在我的 Web 应用程序中使用引导模式窗口。当modal关闭时(触发隐藏事件清除数据),之前输入的数据不会被清除。
这是我尝试过的fiddle`。即使我尝试了表单重置但没有成功。
$("#modal").on('hidden.bs.modal', function (e) {
$('#modal_form')[0].reset();
$("#modal").removeData('bs.modal');
});
$("#modal").click(function() {
$("#modal").removeData('bs.modal');
$("#modal").modal();
});
【问题讨论】:
标签: javascript jquery html twitter-bootstrap-3 bootstrap-modal