我在我的页面中使用了tinymce编辑器。我想要做的是动态更改编辑器的高度。我创建了一个函数:
function setComposeTextareaHeight()
{
$("#compose").height(200);
}
但这不起作用。 我的textarea是
<textarea id="compose" cols="80" name="composeMailContent" style="width: 100%; height: 100%">
我尝试过各种改变高度的方法,但无法解决问题。我有什么遗失的东西吗?
答案 0 :(得分:14)
您可以使用resizeTo主题方法调整tinymce的大小:
editorinstance.theme.resizeTo (width, height);
宽度和高度设置了编辑区域的新大小 - 我还没有找到一种方法来推断编辑器实例的额外大小,所以你可能想要这样做:
editorinstance.theme.resizeTo (new_width - 2, new_height - 32);
答案 1 :(得分:12)
尝试:
tinyMCE.init({
mode : "exact",
elements : "elm1",
....
要在javascript代码中动态更改大小:
var resizeHeight = 350;
var resizeWidth = 450;
tinyMCE.DOM.setStyle(tinyMCE.DOM.get("elm1" + '_ifr'), 'height', resizeHeight + 'px');
tinyMCE.DOM.setStyle(tinyMCE.DOM.get("elm1" + '_ifr'), 'width', resizeWidth + 'px');
答案 2 :(得分:9)
以下内容来自this other SO answer I posted:
以上都不适用于TinyMCE v4,所以我的解决方案是根据工具栏/菜单栏/状态栏计算高度,然后设置编辑器的高度,考虑这些高度。 / p>
function resizeEditor(myHeight) {
window.console.log('resizeEditor');
myEditor = getEditor();
if (myEditor) {
try {
if (!myHeight) {
var targetHeight = window.innerHeight; // Change this to the height of your wrapper element
var mce_bars_height = 0;
$('.mce-toolbar, .mce-statusbar, .mce-menubar').each(function(){
mce_bars_height += $(this).height();
});
window.console.log('mce bars height total: '+mce_bars_height);
myHeight = targetHeight - mce_bars_height - 8; // the extra 8 is for margin added between the toolbars
}
window.console.log('resizeEditor: ', myHeight);
myEditor.theme.resizeTo('100%', myHeight); // sets the dimensions of the editable area
}
catch (err) {
}
}
}
就我而言,我希望编辑器窗口与实际window
的宽度和高度相匹配,因为编辑器会出现在弹出窗口中。要检测更改并调整大小,我将其设置为回调:
window.onresize = function() {
resizeEditor();
}
答案 3 :(得分:5)
有点晚了,但对于像我这样的Googler,请查看autoresize plugin
tinymce.init({
plugins: "autoresize"
});
autoresize_min_height :自动调整大小时编辑器的最小高度值。
autoresize_max_height :编辑器自动调整大小时的最大高度值。
答案 4 :(得分:1)
ManseUK所说的几乎是正确的。 正确的解决方案是:
$('#compose_ifr').height(200);
或在你的情况下
$('#composeMailContent_ifr').height(200);
更新:也许这就是你想要的更多:
// resizes editoriframe
resizeIframe: function(frameid) {
var frameid = frameid ? frameid : this.editor.id+'_ifr';
var currentfr=document.getElementById(frameid);
if (currentfr && !window.opera){
currentfr.style.display="block";
if (currentfr.contentDocument && currentfr.contentDocument.body.offsetHeight) { //ns6 syntax
currentfr.height = 200 + 26;
}
else if (currentfr.Document && currentfr.Document.body.scrollHeight) { //ie5+ syntax
currentfr.height = 200;
}
styles = currentfr.getAttribute('style').split(';');
for (var i=0; i<styles.length; i++) {
if ( styles[i].search('height:') ==1 ){
styles.splice(i,1);
break;
}
};
currentfr.setAttribute('style', styles.join(';'));
}
},
答案 5 :(得分:0)
如果有人发现这个并且还想要更改源代码编辑器插件的高度。
您需要编辑以下文件:
\tiny_mce\plugins\code\plugin.min.js
注意名为minHeigh
的属性并根据您的需要进行调整。您定义的高度不是整个框的高度,但它也不是textarea的高度。它介于两者之间。
答案 6 :(得分:0)
我正在使用tinymce 4.8.3。
我在可调整大小的模式对话框中显示编辑器。
我使用flexbox解决了此问题,如SASS / SCSS所示:
// TinyMCE editor is inside a container something like this
.html-container {
height: 100%;
overflow: hidden;
}
.mce-tinymce {
// This prevents the bottom border being clipped
// May work with just 100%, I may have interference with other styles
height: calc(100% - 2px);
& > .mce-container-body {
height: 100%;
display: flex;
flex-direction: column;
& > .mce-edit-area {
flex: 1;
// This somehow prevents minimum height of iframe in Chrome
// If we resize too small the iframe stops shrinking.
height: 1px;
}
}
}
初始化编辑器时,我们必须告诉它在IFRAME上放置100%的高度。在我的情况下,我还必须减去2px,否则会截断右边框:
tinymce.init({
...
height: "100%",
width: "calc(100% - 2px)"
});
答案 7 :(得分:0)
你可以根据自己的身高来设置
tinymce.init({
height: "500px"
});
答案 8 :(得分:-1)
$(window).load(function () {
$('#YourID_ifr').css('height', '550px');
});