1

我正在尝试为单击 tinyMCE 中的“链接”按钮时创建的所有链接自动添加一个类。我在 tinyMCE 文档中找到了这个片段:

// Adds a class to all paragraphs in the active editor tinyMCE.activeEditor.dom.addClass(tinyMCE.activeEditor.dom.select('p'), 'myclass'); I think this will be what I need if I change it to apply to anchors.

问题1:认为这会奏效吗?知道更好的方法吗?

问题 2:如何以及在何处将此代码段添加到我的主题中?我正在使用的主题在函数目录中有一个 tinyMCE 文件夹。

谢谢!

4

1 回答 1

1

So I ended up doing a jQuery fix rather than going through tinyMCE. Code as follows:

jQuery(document).ready(function(){
    $("#content a").addClass("link_color");
});
于 2012-08-20T18:28:31.173 回答