我想将选定的单词包装CKEditor
在一个<p>
元素中。
从:
<p>This is a paragraph. And this is Selected text.</p>
到:
<p>This is a paragraph. And this is</p>
<p class="myclass">Selected text.</p>
我找到了一些代码:
( function() {
CKEDITOR.plugins.add( 'qna', {
init: function( editor ) {
editor.addCommand( 'insertQnA', {
exec : function( editor ) {
if(CKEDITOR.env.ie) {
editor.getSelection().unlock(true);
var selected_text = editor.getSelection().getNative().createRange().text;
} else {
var selected_text = editor.getSelection().getNative();
}
editor.insertHtml('[before]' + selected_text + '[after]');
}
});
editor.ui.addButton( 'qna', {
label: 'Insert QnA',
command: 'insertQnA',
icon: this.path + 'images/qna.png'
});
}
});
})();
我想用 and 替换[before]
and[after]
但<p class"myclass">
它</p>
不起作用。
我是 JS/Jquery 的新手。我希望你能给我一些启示。
编辑:来自 Spon 的回复。
( function() {
CKEDITOR.plugins.add( 'qna', {
init: function( editor ) {
editor.addCommand( 'insertQnA', {
exec : function( editor ) {
editor.applyStyle(new CKEDITOR.style({
Element : 'p',
Attributes : { class : 'Myclass' },
Styles : { color : '#ff0000','font-family' : 'Courier'}
}));
}
});
editor.ui.addButton( 'qna', {
label: 'Insert QnA',
command: 'insertQnA',
icon: this.path + 'images/question.png'
});
}
});
})();
<span>
上面的代码出于某种未知原因将选定的文本/单词包装在一个元素中。
例子:
从...
<p>This is a paragraph. And this is Selected text.</p>
到...
<p>This is a paragraph. And this is <span>Selected text.</span></p>
这不是我想要的。