boostrap框架小細節
阿新 • • 發佈:2018-01-31
ati cati onf boost normalize cte 保存 log 內容
1、Boostrap模態框保存後隱藏
1 $("#vacationmodel").modal(‘hide‘);
2、Boostrap模態框保存後第二次點擊顯示舊數據
//在保存按鈕事件執行末尾調用clearForm即可 clearForm($("#vacationForm"));、 //清空文本框內容 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; }); };
boostrap框架小細節