English 中文(简体)
我如何利用“贱民”适应器将信息带给CKEditor?
原标题:How do I pass in config info to CKEditor using the jQuery adapter?
最佳回答

我通过了空洞的职能。

$( textarea#my ).ckeditor($.noop, {
    property:  value 
});
问题回答

我通过这一法典完成了这项工作。 希望这一帮助。

The html:

<textarea id="txtMessage" class="editor"></textarea>

这里是 j:

try {
        var config =
            {
                height: 180,
                width: 515,
                linkShowAdvancedTab: false,
                scayt_autoStartup: true,
                enterMode: Number(2),
                toolbar_Full: [[ Styles ,  Bold ,  Italic ,  Underline ,  SpellChecker ,  Scayt ,  - ,  NumberedList ,  BulletedList ],
                                [ Link ,  Unlink ], [ Undo ,  Redo ,  - ,  SelectAll ]]

            };

        $( textarea.editor ).ckeditor(config);   }
jQuery(function(){
        var config = {
            toolbar:
            [
                [ Bold ,  Italic ,  Underline ,  - ,  NumberedList ,  BulletedList ,  - ,  Undo ,  Redo ,  - ,  SelectAll ],
                [ UIColor ]
            ]
        };      
        jQuery( #textAreaElement ).ckeditor(config);
    });
var config = {
    toolbar:
    [
        [ Source , - , Save , NewPage , Preview , - , Templates ],
        [ Maximize ,  ShowBlocks , - , About ]
    ],
    coreStyles_bold: { element :  b , overrides :  strong  }
};

简言之,在我加上核心Styles_bold之前,我的确将“=”从CKAPIC文件改为“:”

 $(document).ready(function(){
     $( .reply ).click(
     function(event){
         // Event click Off Default
         event.preventDefault();
         // CKEditor
         $(function(){
             var config = {toolbar:[[ Bold ,  Italic ,  - ,  Link ,  Unlink ]]};
            //<?php /*echo"var config = {toolbar:[[ Bold ,  Italic ,  - ,  Link ,  Unlink ]]};" ;*/ ?>
             // DOM class = "cke"
             $( textarea.cke ).ckeditor(function(){}, config);                
         });
         return false;
     });
 });

但这并不能确定这一点是否是公平与和解委员会的新特点,而只是想分享我的解决方案(如果它现在帮助任何寻求这种解决办法的人):

$("textarea.youreditor").ckeditor
(
    {
        customConfig: "/path/to/custom/config.js"
    }
);

......和我的意见一样(只是抄录了缺省会):

CKEDITOR.editorConfig = function(config)
{
    config.toolbar_Full =
    [
        { name:  basicstyles , items : [  Bold , Italic , Underline , Strike , Subscript , Superscript , - , RemoveFormat  ] },
        { name:  paragraph , items : [  NumberedList , BulletedList , - , Outdent , Indent , - , JustifyLeft , JustifyCenter , JustifyRight , JustifyBlock ] },
        { name:  insert , items : [  Image , Flash , Table , HorizontalRule , Smiley , SpecialChar , PageBreak , Iframe  ] },
        { name:  colors , items : [  TextColor , BGColor  ] }
    ];  
};    




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签