1

我想将语言“en”更改为“ur”。我从http://www.tinymce.com/i18n/index.php?ctrl=lang&act=download&pr_id=1下载了语言文件夹,并将其三个文件夹主题、插件、语言替换为 tinymce\jscripts\tiny_mce 文件夹。然后我在示例文件夹中更改了 full.html 代码,如下所述:

<!DOCTYPE html>
<html>
<head>

<title>آپ سادہ مرکزی خیال</title>
<meta charset="utf-8" />
<!-- TinyMCE -->
<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
    tinyMCE.init({
        // General options
        language : "ur",
        mode : "textareas",
        theme : "advanced",
        plugins : "advhr,advimage,advlink,emotions,fullpage,media,paste,searchreplace,style,table,template,xhtmlxtras",

除乌尔都语文本外,其他代码相同。

但我的输出没有显示工具栏、文本区域。

请告诉我做错了什么。

4

1 回答 1

1

这些步骤可能对您有所帮助:

  1. 包括 jQuery 和jquery.tinymce.js文件。
  2. 为您的控件分配textarea属性class="tinymce"
  3. 在 JavaScript 中:

    $(function(){
        $("textarea.tinymce").tinymce({
            // Location of TinyMCE script
            script_url : "js/tiny_mce/tiny_mce.js",
    
            // General options
            theme : "advanced",
            plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
    
            // Example content CSS (should be your site CSS)
            content_css : "css/style.css",
    
            // Theme options
            theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
    
    
        });
    });
    
于 2012-11-18T15:02:12.083 回答