1
tinymce的FAQ explains如何通過引用自定義content_css
文件來更改編輯器的默認字體樣式。如何在運行中更改tinymce編輯器的字體樣式和大小?
但我想以編程方式更改編輯器的字體樣式。有任何想法嗎?謝謝。
tinymce的FAQ explains如何通過引用自定義content_css
文件來更改編輯器的默認字體樣式。如何在運行中更改tinymce編輯器的字體樣式和大小?
但我想以編程方式更改編輯器的字體樣式。有任何想法嗎?謝謝。
這是可能的,但需要一些知識。
您需要調用類似
self.switchStyle(url, ed);
其中switchStyle是
// url is the url to the stylesheet file to be added to the editor iframes head
// ed is the editor object or editor id
switchStyle: function(url, ed) {
if (typeof ed != 'object') {
ed = tinymce.get(ed);
}
//replace the custom content_css if set
var url_to_replace = ed.getParam('content_css');
var doc = ed.getDoc();
var $doc = $(doc);
var sheets_urls = [];
if (url_to_replace){
sheets_urls.push(url_to_replace);
}
// remove all stylesheets from sheets_urls
$doc.find('link').each(function() {
if (tinymce.inArray(sheets_urls, $(this).attr('href').split('?')[0]) !== -1) {
$(this).remove();
}
});
var link = doc.createElement('link');
link.type = 'text/css';
link.rel = 'stylesheet';
link.href = url;
// setstylesheet
$doc.find('head:first').append(link);
},