我一直在试图做这件事。但是我一直在为自己做好准备。
这是所有基本代码所需的基本小提琴:
// when edit
$('.edit').on('click', function() {
var target = $(this).attr('target');
$(this).parent().find('.save').show();
$(this).parent().find('.edit').hide();
$('#module_descr').summernote({
height: 300,
toolbar: [
['img', ['picture']],
['style', ['style', 'addclass', 'clear']],
['fontstyle', ['bold', 'italic', 'ul', 'ol', 'link', 'paragraph']],
['fontstyleextra', ['strikethrough', 'underline', 'hr', 'color', 'superscript', 'subscript']]
]
});
});
// when saving title or description
$('.save').on('click', function() {
$('#module_descr').summernote('destroy');
$(this).parent().find('.save').hide();
$(this).parent().find('.edit').show();
});
.save {
display: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.0/summernote.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.0/summernote.css" rel="stylesheet" />
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" />
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">Ressources</div>
<div class="panel-body" style="max-height:200px;overflow:auto;">
<div class="list-group modules" id="ressourcesList">
<a href="#" class="list-group-item" id="1"> Resource 1
</a>
<a href="#" class="list-group-item" id="2"> Resource 2
</a>
<a href="#" class="list-group-item" id="3"> Another Resource
</a>
</div>
</div>
</div>
<div class="row" id="module_info">
<div class="panel panel-info">
<div class="panel-heading">
<div class="row">
<div class="col-md-9 title_descr"></div>
<div class="col-md-3 text-right">
<button type="button" class="btn btn-info btn-sm edit" target="module_descr">Edit</button>
<button type="button" class="btn btn-success btn-sm save" target="module_descr" style="display:none">Save</button>
</div>
</div>
</div>
<div class="panel-body" id="module_descr" module_id="">
</div>
</div>
</div>
我尝试在谷歌搜索任何可能的我真的很感激任何帮助,
最诚挚的问候,
Xogno
答案 0 :(得分:1)
发布答案,以防有人帮助。
在我哥哥的帮助下,我找到了一种方法来完全按照我的意愿行事。 事实证明,通过为summernote创建自定义按钮的选项,该按钮不需要特别在编辑器中。您可以使用&#34;节点&#34;。
将任何内容添加到edito小提琴中的代码是使其工作的基本代码,但以下是功能:
一旦你保存了de text,你可以移动可折叠的感谢移动图标 - 通过 Jquery Sortable 实现。
// when edit
$('.edit').on('click', function() { var target = $(this).attr('target'); $(this).parent().find('.save').show();
$(this).parent().find('.edit').hide();
$('#module_descr').summernote({
disableDragAndDrop: true,
height: 300,
toolbar: [
['img', ['picture']],
['style', ['style', 'addclass', 'clear']],
['fontstyle', ['bold', 'italic', 'ul', 'ol', 'link', 'paragraph']],
['fontstyleextra', ['strikethrough', 'underline', 'hr', 'color', 'superscript', 'subscript']]
]
});
});
$('.addResource').on('click', function() {
var resourceId = $(this).parent().attr('id');
console.log($('#3'));
console.log($('#item2'));
mydiv = $('<div><p>test paragraph</p></div>');
console.log("I created a div : ", mydiv);
var node = document.createElement('div');
//node.textContent = "This is a DIV node\nAgain some text</br>";
node.innerHTML = '<div class="col-md-12 resourceadded"><span class="handle button glyphicon glyphicon-move"></span><button class="btn btn-info " contenteditable="false" data-toggle="collapse" data-target="#demo_'+ resourceId + '">Collapsible '+ resourceId + '</button><div contenteditable="false" id="demo_'+ resourceId + '" class="collapse">Lorem ipsum dolor text....</div><br/><br/></div>';
node.setAttribute("class", "test");
// @param {Node} node
$('#module_descr').summernote('insertNode', node);
$('#module_info').find('.save').show();
$('#module_info').find('.edit').hide();
});
// when saving title or description
$('.save').on('click', function() {
$('#module_descr').summernote('destroy');
$(this).parent().find('.save').hide();
$(this).parent().find('.edit').show();
});
$("#module_descr").sortable({
placeholder: 'slide-placeholder',
axis: "y",
revert: 150,
start: function(e, ui){
placeholderHeight = ui.item.outerHeight();
ui.placeholder.height(placeholderHeight + 15);
$('<div class="slide-placeholder-animator" data-height="' + placeholderHeight + '"></div>').insertAfter(ui.placeholder);
},
change: function(event, ui) {
ui.placeholder.stop().height(0).animate({
height: ui.item.outerHeight() + 15
}, 300);
placeholderAnimatorHeight = parseInt($(".slide-placeholder-animator").attr("data-height"));
$(".slide-placeholder-animator").stop().height(placeholderAnimatorHeight + 15).animate({
height: 0
}, 300, function() {
$(this).remove();
placeholderHeight = ui.item.outerHeight();
$('<div class="slide-placeholder-animator" data-height="' + placeholderHeight + '"></div>').insertAfter(ui.placeholder);
});
},
stop: function(e, ui) {
$(this).append('<br/><br/>');
$(".slide-placeholder-animator").remove();
},
});
这里是查看代码实际操作的小提琴: https://jsfiddle.net/Ltw7dsqr/5/
改善它的一种方法是在编辑器中使可折叠移动IN,但我不知道如何使它成为可能。