我在控件之后和 textarea 之前得到了很大的空间(大约 300 像素)?在 Chrome、Firefox 和 IE9 中。我尝试过使用默认的 jWysiwyg,但得到了同样的结果。
function($) {
$('#news').wysiwyg({
controls: {
strikeThrough : { visible : true },
underline : { visible : true },
separator00 : { visible : false },
justifyLeft : { visible : true },
justifyCenter : { visible : true },
justifyRight : { visible : true },
justifyFull : { visible : true },
separator01 : { visible : true },
indent : { visible : true },
outdent : { visible : true },
separator02 : { visible : true },
subscript : { visible : true },
superscript : { visible : true },
separator03 : { visible : true },
undo : { visible : true },
redo : { visible : true },
separator04 : { visible : true },
insertOrderedList : { visible : true },
insertUnorderedList : { visible : true },
insertHorizontalRule : { visible : true },
separator07 : { visible : true },
cut : { visible : true },
copy : { visible : true },
paste : { visible : true }
},css : "ttwcadm.css"
});
})(jQuery);
我的 HTML 是
<form method="post" id="newsform" action="index.php?page=6">
<textarea id="news" name="news">
<?php include($newsfile); ?>
</textarea>
</form>
任何想法将不胜感激......