tinyMCE - 在getContent()方法上添加样式

时间:2014-08-26 08:17:28

标签: javascript tinymce

我正在使用timyMCE版本3 { majorVersion : '3', minorVersion : '5.4.1' }。当我将Content放入textarea时,我得到了以下数据。

<html>
    <head>
       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    </head>
    <body>
        <p> Content </p>
    </body>
</html>

当我调用getContent()方法时,我应该怎么做才能将其更改为低于输出?

<html>
    <head>
        <meta http-equiv="content-type" content="text/html;" charset="UTF-8">
            <style>
                /** Specify a font named "MyFont",
                and specify the URL where it can be found: */
                @font-face {
                    font-family: "MyFont";
                    src: url('file:///android_asset/fonts/RSU_Regular.ttf');
                }
                body { font-family:"MyFont"}
            </style>
    </head>
    <body>
        <p> Content </p>
    </body>
</html>

你能帮我吗?

0 个答案:

没有答案