2011-05-17 49 views

回答

2

看看這個:http://tinymce.moxiecode.com/wiki.php/Configuration:formats(請參閱「刪除格式」部分)。

您必須編輯tiny_mce.js。
搜索那裏示出和以下添加到removeformat陣列的代碼:

{selector : 'p', attributes : ['style'], split : false, expand : false, deep : true} 

應該防止TinyMCE的從使用removeformat按鈕時去除對元素的類屬性。

+0

我不知道我得到了標記權:我只是想有可能,這些類,被附加到我的身材元素不會得到剝離。我的代碼如下: ... extended_valid_elements:「p,figure [class],figcaption」, formats:{selector:'figure',attributes:['class'],split:false ,展開:false,deep:true} }, ... 但是無論如何這些類都被剝離了。 – philippdatz 2011-05-18 12:46:59

+0

明白了!非常感謝你! – philippdatz 2011-05-18 14:13:06

0

代碼必須是:

... 
formats : { 
    removeformat : [ 
     {selector : 'figure', attributes : ['style'], split : false, expand : false, deep : true} 
    ] 
}, 
...