代码之家  ›  专栏  ›  技术社区  ›  gotnull mzelina

如何禁用TinyMCE的文本区域

  •  7
  • gotnull mzelina  · 技术社区  · 14 年前

    我尝试了以下所有方法:

    $(#"tbxNote").attr("disabled", "disabled"); ////doesn't work
    $(#"tbxNote").attr("disabled", "true"); //doesn't work either :)
    
    tinyMCE.init( mode: "none" ); //throws an error
    

    这就是我加载TinyMCE的方式:

    //load tinymce plugin
    $('#tbxNote').tinymce({
        // Location of TinyMCE script
        script_url: '/common/scripts/tiny_mce/tiny_mce.js',
    
        // General options
        theme: "advanced",
    
        // Theme options
        theme_advanced_buttons1: "link,unlink",
        theme_advanced_buttons2: "", //important
        theme_advanced_buttons3: "", //important
        theme_advanced_toolbar_location: "top",
        theme_advanced_toolbar_align: "left",
        theme_advanced_statusbar_location: "bottom",
        theme_advanced_resizing: false,
    
        setup: function (ed) {
            ed.onClick.add(function (ed) {
                //ed.windowManager.alert('User clicked the editor.');
            });
        }
    });
    
    1 回复  |  直到 10 年前
        1
  •  11
  •   Soufiane Hassou    14 年前

    添加 readonly : true 给你的爱人。