解決Bootstrap模態視窗Modal中使用Kindeditor或UEditor編輯器第二次無法載入的問題
遇到這個問題很是困惑,網上查資料發現解決方法其實就是在Modal關閉的時候做一些處理,將編輯器刪除就可以二次載入了
Kindeditor解決方法:
$('#myModal').on('hidden.bs.modal', function () {
// 關閉Dialog前移除編輯器
KindEditor.remove('#content');
});
UEditor解決方法:
$('#adminModalLg').on('hidden.bs.modal', function () {
// 關閉Dialog前移除編輯器
UM.getEditor('container').destroy();
});
相關文章
- 解決bootstrap的modal使用Esc鍵無法關閉頁面問題boot
- 解決:angular js模板中無法使用ueditor的問題AngularJS
- ueditor編輯器再thinkphp中使用解決轉義問題PHP
- Bootstrap 模態框無法呼叫的問題boot
- 採用Kindeditor編輯器時,提交、修改無法入庫的原因和解決辦法
- Bootstrap模態框(Modal)boot
- asp.net無法獲取kindeditor文字編輯器內容的解決辦法ASP.NET
- bootstrap中的模態框(modal,彈出層)boot
- 解決Kali LinuxVI編輯器無法複製問題Linux
- 解決新版谷歌瀏覽器無法關閉視窗的問題谷歌瀏覽器
- KindEditor編輯器的圖片上傳問題
- 解決matplotlib使用plt.pause動態繪圖視窗無法關閉問題繪圖
- 15款最好的 jQuery Modal(模態視窗)外掛jQuery
- thinkphp編輯器kindeditorPHP
- bootstrap datepicker 在bootstrap modal中不顯示問題boot
- SSM使用UEditor富文字編輯器SSM
- vue專案打包,解決靜態資源無法載入和路由載入無效(404)問題Vue路由
- js 操作kindeditor編輯器JS
- 解決go get 下載github專案慢或無法下載的問題!GoGithub
- 解決無法使用VI的問題
- 解決百度編輯器在編輯視訊時src丟失的問題
- 組策略編輯器無法開啟的解決方法
- Bootstrap(v3.2.0)模態框(modal)垂直居中boot
- AD18無法模擬問題的解決
- 【BootStrap】--登入載入模態框提示boot
- goland中npm無法使用的問題及解決方法GoLandNPM
- [提問交流]onethink如何在前臺呼叫ueditor或kindeditor
- 手動下載 Chrome,解決 puppeteer 無法使用問題Chrome
- webstorm 無法編輯程式碼問題WebORM
- 解決Linux無法開啟android模擬器問題LinuxAndroid
- Bootstrap modal模態框彈出瞬間又消失boot
- UEditor編輯器使用示例
- 剛才把kindeditor線上編輯器做成視覺化UBB編輯模式了視覺化模式
- 解決ASM磁碟組無法掛載的問題ASM
- 解決CentOS7系統無法使用中文輸入法的問題CentOS
- 關於彈出模態視窗的快取問題快取
- 設定bootstrap modal模態框的寬度和寬度boot
- JSP頁面中嵌入UEditor編輯器方法JS