bootstrap中modal框資料不清空,怎麼解決
阿新 • • 發佈:2018-11-11
$('#myModal').on('hidden.bs.modal', function () { $('#fm').data('bootstrapValidator').destroy(); $('#fm').data('bootstrapValidator', null); clearForm($('#fm')); formValidator(); //重新載入驗證 }); //清空文字框內容 function clearForm(form) { // input清空 $(':input', form).each(function () { var type = this.type; var tag = this.tagName.toLowerCase(); // normalize case if (type == 'text' || type == 'password' || tag == 'textarea') this.value = ""; // 多選checkboxes清空 // select 下拉框清空 else if (tag == 'select') this.selectedIndex = -1; }); }; 我是又手動清空了一次