jQuery cleditor插件:创建一个新按钮

时间:2012-03-11 15:13:28

标签: jquery-plugins cleditor

使用cleditor,我正在尝试使用以下代码设置自定义按钮:

(function($) {
    $.cleditor.buttons.link_species = {
        name: "link_species",
        image: "fish.gif",
        title: "Species Link",
        command: "inserthtml",
        popupName: "link_species",
        popupClass: "cleditorPrompt",
        popupContent: "Genus: <input type='text' size='15'> Species: <input type='text' size='15'><br />Remove italics? <input type='checkbox' value='remove'>&nbsp;<input type='button' value='Ok' />",
        buttonClick: link_speciesClick
    };

  // Handle the hello button click event
  function link_speciesClick(e, data) {
    // Wire up the submit button click event
    $(data.popup).children(":button")
      .unbind("click")
      .bind("click", function(e) {

        // Get the editor
        var editor = data.editor;

        var $text = $(data.popup).find(":text"),
          genus = $text[0].value,
          species = $text[1].value;

        var slug = genus + '-' + species;
        slug = htmlEntities(slug);

        var link = '/dev/species/' + slug + '/';
        var rel = link + '?preview=true';

        var display = firstUpper(genus) + ' ' + species;

        // Get the entered name
        var html = '<a href="' + link + '" rel="' + rel + '">' + display + '</a>';

        if ( !$(data.popup).find(":checkbox").is(':checked') ) {
            html = '<em>' + html + '</em>';
        }

        // Insert some html into the document
        editor.execCommand(data.command, html, null, data.button);

        // Hide the popup and set focus back to the editor
        editor.hidePopups();
        editor.focus();
      });
  }
})(jQuery);

这是一个WordPress网站,目录结构如下:

/wp-content/plugins/sf-species-profile/cleditor

在那里,我有所有的cleditor文件和config.js。这个文件是存储上述代码的地方。

我还有一个包含24 * 24 images文件的fish.gif文件夹。

出于某种原因,当我运行此代码时,我收到以下错误:

[firefox]
a is undefined
<<myurl>>/wp-content/plugins/sf-species-profiles/cleditor/jquery.cleditor.min.js?ver=3.3.1
Line 17

[chrome]
Uncaught TypeError: Cannot read property 'length' of undefined

如果我将“image”参数更改为image:“”将显示“B”的相同图像,但该插件可以正常工作。

有没有人有任何想法可能出错?

1 个答案:

答案 0 :(得分:1)

使用非最小化版本进行调试会更容易。您可以从此处获取:http://premiumsoftware.net/cleditor/zip

有两个函数在代码中包含一个长度调用,最终在最小化代码的第17行。处理颜色的函数hex(s)中的一个。另一个是imagePath函数。

function imagesPath() {
  var cssFile = "jquery.cleditor.css",
  href = $("link[href$='" + cssFile +"']").attr("href");
  return href.substr(0, href.length - cssFile.length) + "images/";
}

如果渲染的html不包含像“&lt; link rel =”stylesheet“type =”text / css“href =”path / to / jquery.cleditor这样的行,它可能会抛出你所拥有类型的错误.css“/&gt;”。 (然后Href将是未定义的。)

对于wordpress集成,您可能会发现在使用wordpress plugin version of cleditor时更容易设置。