我在bootstrap模式上使用summernote。但是当点击工具栏上的下拉项时,下拉菜单没有显示在正确的位置,甚至没有退出下拉DOM.I'将显示下面的图片: enter image description here
我在summernote github问题列表和stackoverflow中搜索了很长时间。我尝试添加" dialogsInBody:true",但没有工作。任何人都可以帮我解决这个问题。谢谢。 !
答案 0 :(得分:1)
使用$('。dropdown-toggle')。dropdown();
答案 1 :(得分:1)
尝试一下。在这里工作正常。
callbacks: {
onInit: function() {
//when inside a modal, re-link the dropdown
var thisNote = $(this);
if(thisNote.closest('.modal').length>0){
thisNote.next().find('.dropdown-toggle').dropdown();
}
}
}