gpt4 book ai didi

jquery - 使froala编辑器的父div高度可缩放

转载 作者:太空宇宙 更新时间:2023-11-04 09:15:31 25 4
gpt4 key购买 nike

我正在使用 froala 2.4.0 内联编辑器来实现类似 facebook post 的功能。我在 div 中嵌入了 froala 编辑器,如下图所示。现在我想让父 div 可扩展,即随着 froala 编辑器内容的变化而增长/缩小。带边框的框是父 div,占位符行是froala 内联编辑器。有什么办法吗? enter image description here

这是我到目前为止得到的:

$(function() {
$('#custom-post-feed-text').froalaEditor({
toolbarInline: true,
charCounterCount: false,
placeholderText: 'Share what\'s on your mind...',
toolbarButtons: [],
quickInsertButtons: []
})
});
<link href="https://cdnjs.cloudflare.com/ajax/libs/froala-editor/2.4.0/css/froala_editor.pkgd.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/froala-editor/2.4.0/js/froala_editor.pkgd.min.js"></script>

<div class="custom-post-feed-container" id="custom-post-feed-container-personal">
<div class="custom-post-feed-textarea">
<textarea id="custom-post-feed-text"></textarea>
</div>
<div class="custom-post-feed-options">
<span class="custom-post-feed-more-options" id="custom-feed-more-options" title="More">+</span>
<span id="more-option">
<span title="Upload image"><i class="fa fa-camera" aria-hidden="true"></i></span>
<span title="Embed link"><i class="fa fa-link" aria-hidden="true"></i></span>
<span title="Upload video"><i class="fa fa-video-camera" aria-hidden="true"></i></span>
<span title="Add Poll"><i class="fa fa-pie-chart" aria-hidden="true"></i></span>
</span>
</div>
</div>

最佳答案

Froala 编辑器支持自动增长功能,您可以在其中设置 heightMin 和 mandheightMax` 并且会随着用户输入自动增长高度。查看文档

https://www.froala.com/wysiwyg-editor/examples/adjustable-height

$(function() {
$('#custom-post-feed-text').froalaEditor({
toolbarInline: true,
charCounterCount: false,
placeholderText: 'Share what\'s on your mind...',
toolbarButtons: [],
quickInsertButtons: []
heightMin: 50,
heightMax: 200
})
});

为了您的目的,如果父 div 没有为 custom-post-feed-textarea 设置任何固定高度,它将自动增长

关于jquery - 使froala编辑器的父div高度可缩放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41807316/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com