0
現在のコードは、ユーザーがテキストをckeditorに貼り付けることを目的としています。そして、submitをクリックすると、特定の文字が識別され、フォントサイズが変更されます。これは、通常のテキストエリアにあるときにテキストがckeditorの外側に表示されているときに機能しますが、フォントサイズの変更はckeditor内に表示されません。フォントとフォントサイズの変更をckeditorに認識させるにはどうすればよいですか?私はあなたが以下のアドオンを探しているかもしれないと思うckeditorに表示するフォントサイズの変更方法
<script src="//cdn.ckeditor.com/4.6.2/full/ckeditor.js"></script>
</head>
<body>
<form onsubmit="event.preventDefault(); filterTextArea();">
<div name="space" id="space"> </div>
<textarea name="editor1" id="editor1" rows="10" cols="80" > </textarea> <br>
<div id="formbox"> <button action="submit" id = "submit" >WORDIPLY</button> </div>
<script>
CKEDITOR.replace('editor1', {
customConfig: 'www.wordiply.weebly.com/files/theme/ckeditor.js'
});
</script>
</body>
<body>
<script>
function filterTextArea(){
editor = CKEDITOR.instances.editor1;
var edata = editor.getData();
//CHANGE FONT OF CHARACTERS
editor.setData(data);
}
var config = {};
config.placeholder = 'some value';
CKEDITOR.replace("myeditor" , config, {
});
私はすでにエディタ –
@CStrickに統合することを持っていることをかなり確信して、うーん。あなたはまだインラインでフォントサイズを見ることができませんか?行方不明の設定があるのだろうか... – Moose