一聚教程网:一个值得你收藏的教程网站

热门教程

CKEditor Link插件实现手动输入变为自动下拉框

时间:2022-06-25 19:41:42 编辑:袖梨 来源:一聚教程网

效果如下

 

CKEditor Link插件实现手动输入变为自动下拉框

 下面来修改ckeditorpluginslinkdialogslink.js

修改之前,请先备份一下 果只允许用户选择一个列表,那么就需要稍微改动一下。

/

 代码如下 复制代码

*
 Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add("link",
function(n) {
    var p,
    q;
    function r(a) {
        return a.replace(/'/g, "$&")
    }
    function t(a) {
        var g,
        c = p,
        d,
        e;
        g = [q, "("];
        for (var b = 0; b < c.length; b++) d = c[b].toLowerCase(),
        e = a[d],
        0 < b && g.push(","),
        g.push("'", e ? r(encodeURIComponent(a[d])) : "", "'");
        g.push(")");
        return g.join("")
    }
    function u(a) {
        for (var g, c = a.length, d = [], e = 0; e < c; e++) g = a.charCodeAt(e),
        d.push(g);
        return "String.fromCharCode(" + d.join(",") + ")"
    }
    function v(a) {
        return (a = a.getAttribute("class")) ? a.replace(/s*(?:cke_anchor_empty|cke_anchor)(?:s*$)?/g,
        "") : ""
    }
    var w = CKEDITOR.plugins.link,
    s = function() {
        var a = this.getDialog(),
        g = a.getContentElement("target", "popupFeatures"),
        a = a.getContentElement("target", "linkTargetName"),
        c = this.getValue();
        if (g && a) switch (g = g.getElement(), g.hide(), a.setValue(""), c) {
        case "frame":
            a.setLabel(n.lang.link.targetFrameName);
            a.getElement().show();
            break;
        case "popup":
            g.show();
            a.setLabel(n.lang.link.targetPopupName);
            a.getElement().show();
            break;
        default:
            a.setValue(c),
            a.getElement().hide()
        }
    },
    x = /^javascript:/,
    y = /^mailto:([^?]+)(?:?(.+))?$/,
    z = /subject=([^;?:@&=$,/]*)/,
    A = /body=([^;?:@&=$,/]*)/,
    B = /^#(.*)$/,
    C = /^((?:http|https|ftp|news)://)?(.*)$/,
    D = /^(_(?:self|top|parent|blank))$/,
    E = /^javascript:void(location.href='mailto:'+String.fromCharCode(([^)]+))(?:+'(.*)')?)$/,
    F = /^javascript:([^(]+)(([^)]+))$/,
    G = /s*window.open(s*this.hrefs*,s*(?:'([^']*)'|null)s*,s*'([^']*)'s*)s*;s*returns*false;*s*/,
    H = /(?:^|,)([^=]+)=(d+|yes|no)/gi,
    I = function(a, g) {
        var c = g && (g.data("cke-saved-href") || g.getAttribute("href")) || "",
        d,
        e,
        b =
        {};
        c.match(x) && ("encode" == o ? c = c.replace(E,
        function(a, c, b) {
            return "mailto:" + String.fromCharCode.apply(String, c.split(",")) + (b && b.replace(/'/g, "'"))
        }) : o && c.replace(F,
        function(a, c, d) {
            if (c == q) {
                b.type = "email";
                for (var a = b.email = {},
                c = /(^')|('$)/g, d = d.match(/[^,s]+/g), e = d.length, g, f, h = 0; h < e; h++) g = decodeURIComponent,
                f = d[h].replace(c, "").replace(/'/g, "'"),
                f = g(f),
                g = p[h].toLowerCase(),
                a[g] = f;
                a.address = [a.name, a.domain].join("@")
            }
        }));
        if (!b.type) if (d = c.match(B)) b.type = "anchor",
        b.anchor = {},
        b.anchor.name = b.anchor.id =
        d[1];
        else if (d = c.match(y)) {
            e = c.match(z);
            c = c.match(A);
            b.type = "email";
            var f = b.email = {};
            f.address = d[1];
            e && (f.subject = decodeURIComponent(e[1]));
            c && (f.body = decodeURIComponent(c[1]))
        } else c && (e = c.match(C)) ? (b.type = "url", b.url = {},
        b.url.protocol = e[1], b.url.url = e[2]) : b.type = "url";
        if (g) {
            d = g.getAttribute("target");
            b.target = {};
            b.adv = {};
            if (d) d.match(D) ? b.target.type = b.target.name = d: (b.target.type = "frame", b.target.name = d);
            else if (d = (d = g.data("cke-pa-onclick") || g.getAttribute("onclick")) && d.match(G)) {
                b.target.type =
                "popup";
                for (b.target.name = d[1]; c = H.exec(d[2]);)("yes" == c[2] || "1" == c[2]) && !(c[1] in {
                    height: 1,
                    width: 1,
                    top: 1,
                    left: 1
                }) ? b.target[c[1]] = !0: isFinite(c[2]) && (b.target[c[1]] = c[2])
            }
            d = function(a, c) {
                var d = g.getAttribute(c);
                null !== d && (b.adv[a] = d || "")
            };
            d("advId", "id");
            d("advLangDir", "dir");
            d("advAccessKey", "accessKey");
            b.adv.advName = g.data("cke-saved-name") || g.getAttribute("name") || "";
            d("advLangCode", "lang");
            d("advTabIndex", "tabindex");
            d("advTitle", "title");
            d("advContentType", "type");
            CKEDITOR.plugins.link.synAnchorSelector ?
            b.adv.advCSSClasses = v(g) : d("advCSSClasses", "class");
            d("advCharset", "charset");
            d("advStyles", "style");
            d("advRel", "rel")
        }
        d = b.anchors = [];
        var h;
        if (CKEDITOR.plugins.link.emptyAnchorFix) {
            f = a.document.getElementsByTag("a");
            c = 0;
            for (e = f.count(); c < e; c++) if (h = f.getItem(c), h.data("cke-saved-name") || h.hasAttribute("name")) d.push({
                name: h.data("cke-saved-name") || h.getAttribute("name"),
                id: h.getAttribute("id")
            })
        } else {
            f = new CKEDITOR.dom.nodeList(a.document.$.anchors);
            c = 0;
            for (e = f.count(); c < e; c++) h = f.getItem(c),
            d[c] =
            {
                name: h.getAttribute("name"),
                id: h.getAttribute("id")
            }
        }
        if (CKEDITOR.plugins.link.fakeAnchor) {
            f = a.document.getElementsByTag("img");
            c = 0;
            for (e = f.count(); c < e; c++)(h = CKEDITOR.plugins.link.tryRestoreFakeAnchor(a, f.getItem(c))) && d.push({
                name: h.getAttribute("name"),
                id: h.getAttribute("id")
            })
        }
        this._.selectedElement = g;
        return b
    },
    j = function(a) {
        a.target && this.setValue(a.target[this.id] || "")
    },
    k = function(a) {
        a.adv && this.setValue(a.adv[this.id] || "")
    },
    l = function(a) {
        a.target || (a.target = {});
        a.target[this.id] = this.getValue() ||
        ""
    },
    m = function(a) {
        a.adv || (a.adv = {});
        a.adv[this.id] = this.getValue() || ""
    },
    o = n.config.emailProtection || "";
    o && "encode" != o && (q = p = void 0, o.replace(/^([^(]+)(([^)]+))$/,
    function(a, b, c) {
        q = b;
        p = [];
        c.replace(/[^,s]+/g,
        function(a) {
            p.push(a)
        })
    }));
    var i = n.lang.common,
    b = n.lang.link;
    return {
        title: b.title,
        minWidth: 350,
        minHeight: 230,
        contents: [{
            id: "info",
            label: b.info,
            title: b.info,
            elements: [{
                id: "linkType",
                type: "select",
                label: b.type,
                "default": "url",
                items: [[b.toUrl, "url"], [b.toAnchor, "anchor"], [b.toEmail, "email"]],
                onChange: function() {
                    var a =
                    this.getDialog(),
                    b = ["urlOptions", "anchorOptions", "emailOptions"],
                    c = this.getValue(),
                    d = a.definition.getContents("upload"),
                    d = d && d.hidden;
                    if (c == "url") {
                        n.config.linkShowTargetTab && a.showPage("target");
                        d || a.showPage("upload")
                    } else {
                        a.hidePage("target");
                        d || a.hidePage("upload")
                    }
                    for (d = 0; d < b.length; d++) {
                        var e = a.getContentElement("info", b[d]);
                        if (e) {
                            e = e.getElement().getParent().getParent();
                            b[d] == c + "Options" ? e.show() : e.hide()
                        }
                    }
                    a.layout()
                },
                setup: function(a) {
                    a.type && this.setValue(a.type)
                },
                commit: function(a) {
                    a.type =
                    this.getValue()
                }
            },
            {
                type: "vbox",
                id: "urlOptions",
                children: [{
                    type: "hbox",
                    widths: ["25%", "75%"],
                    children: [{
                        id: "protocol",
                        type: "select",
                        label: i.protocol,
                        "default": "http://",
                        items: [["http://‎", "http://"], ["https://‎", "https://"], ["ftp://‎", "ftp://"], ["news://‎", "news://"], ["本地文件", ""]],
                        setup: function(a) {
                            a.url && this.setValue(a.url.protocol || "");
                            var d = this.getDialog();
                            var e = d.getContentElement("info", "qlistbtn");
                         var i = d.getContentElement("info", "url");
                            if(this.getValue()==""){
                               e.getElement().show();
                            i.getElement().hide();
                            e.getElement().$.children[1].children[0].children[0].value=a.url.url;
                         }else{
                          i.getElement().show();
                          e.getElement().hide();
                         }
                        },
                        onChange:function(a){
                         var d = this.getDialog();
                         //如果是空字符串,则显示按钮,否则隐藏
                         var e = d.getContentElement("info", "qlistbtn");
                         var i = d.getContentElement("info", "url");
                         if(a.data.value==""){
                          // i.setValue("ttt");
                          var localfiles = getHtmlList();
                            e.getElement().show();
                            var el=e.getElement();
                            //获取本地文件
                            if(localfiles.length>0){
                             var first=i.getValue();
                             el.$.children[1].children[0].children[0].innerHTML="";
                             for(var j=0;j                               var fnode=document.createElement("option");
                              if(first.length<1){
                               first=localfiles[j];
                              }
                              if(first==localfiles[j]){
                               fnode.selected="selected";
                              }
                              fnode.value=localfiles[j];
                              fnode.text=localfiles[j];
                              el.$.children[1].children[0].children[0].appendChild(fnode);
                             }
                             i.setValue(first);
                            }
                           // el.$.children[1].children[0].children[0].children[1].selected="selected";
                            i.getElement().hide();
                         }else{
                          i.getElement().show();
                          e.getElement().hide();
                         }
                         
                        },
                        commit: function(a) {
                            if (!a.url) a.url = {};
                            a.url.protocol = this.getValue()
                        }
                    },
                    {
                      type: "fieldset",
                         id: "qlinkpanel",
                         label: "",
                         style:"padding:0px;border:0px;",
                         setup: function(a) {
                            // a.anchors.length > 0 ? this.getElement().show() : this.getElement().hide()
                         },
                         children: [
                                    {
                          type: "text",
                          id: "url",
                          label: i.url,
                          required: !0,
                          onLoad: function() {
                              this.allowOnChange = true
                          },
                          onKeyUp: function() {
                              this.allowOnChange =
                              false;
                              var a = this.getDialog().getContentElement("info", "protocol"),
                              b = this.getValue(),
                              c = /^((javascript:)|[#/.?])/i,
                              d = /^(http|https|ftp|news)://(?=.)/i.exec(b);
                              if (d) {
                                  this.setValue(b.substr(d[0].length));
                                  a.setValue(d[0].toLowerCase())
                              } else c.test(b) && a.setValue("");
                              this.allowOnChange = true
                          },
                          onChange: function() {
                              if (this.allowOnChange) this.onKeyUp()
                          },
                          validate: function() {
                              var a = this.getDialog();
                              if (a.getContentElement("info", "linkType") && a.getValueOf("info", "linkType") != "url") return true;
                              if (/javascript:/.test(this.getValue())) {
                                  alert(i.invalidValue);
                                  return false
                              }
                              return this.getDialog().fakeObj ? true: CKEDITOR.dialog.validate.notEmpty(b.noUrl).apply(this)
                          },
                          setup: function(a) {
                              this.allowOnChange = false;
                              a.url && this.setValue(a.url.url);
                              this.allowOnChange = true
                          },
                          commit: function(a) {
                              this.onChange();
                              if (!a.url) a.url = {};
                              a.url.url = this.getValue();
                              this.allowOnChange = false
                          }
                      },{
                        type: "select",
                           id: "qlistbtn",
                           //style:"margin-top: 5px;",
                           label:"请选择本地文件",
                           title: '请选择文件',
                           items: [["暂无文件‎", ""]],
                           setup: function(a) {
                           },
                           onClick: function() {
                              // alert( 'Clicked: ' + this.id );
                           },onChange:function(){
                            var d = this.getDialog();
                            var i = d.getContentElement("info", "url");
                            i.setValue(this.getValue());
                           }
                      }]
                    } ],
                    setup: function() {
                        this.getDialog().getContentElement("info", "linkType") || this.getElement().show()
                    }
                },
                {
                    type: "button",
                    id: "browse",
                    hidden: "true",
                    filebrowser: "info:url",
                    label: i.browseServer
                }]
            },
            {
                type: "vbox",
                id: "anchorOptions",
                width: 260,
                align: "center",
                padding: 0,
                children: [{
                    type: "fieldset",
                    id: "selectAnchorText",
                    label: b.selectAnchor,
                    setup: function(a) {
                        a.anchors.length > 0 ? this.getElement().show() : this.getElement().hide()
                    },
                    children: [{
                        type: "hbox",
                        id: "selectAnchor",
                        children: [{
                            type: "select",
                            id: "anchorName",
                            "default": "",
                            label: b.anchorName,
                            style: "width: 100%;",
                            items: [[""]],
                            setup: function(a) {
                                this.clear();
                                this.add("");
                                for (var b = 0; b < a.anchors.length; b++) a.anchors[b].name && this.add(a.anchors[b].name);
                                a.anchor &&
                                this.setValue(a.anchor.name); (a = this.getDialog().getContentElement("info", "linkType")) && a.getValue() == "email" && this.focus()
                            },
                            commit: function(a) {
                                if (!a.anchor) a.anchor = {};
                                a.anchor.name = this.getValue()
                            }
                        },
                        {
                            type: "select",
                            id: "anchorId",
                            "default": "",
                            label: b.anchorId,
                            style: "width: 100%;",
                            items: [[""]],
                            setup: function(a) {
                                this.clear();
                                this.add("");
                                for (var b = 0; b < a.anchors.length; b++) a.anchors[b].id && this.add(a.anchors[b].id);
                                a.anchor && this.setValue(a.anchor.id)
                            },
                            commit: function(a) {
                                if (!a.anchor) a.anchor = {};
                                a.anchor.id =
                                this.getValue()
                            }
                        }],
                        setup: function(a) {
                            a.anchors.length > 0 ? this.getElement().show() : this.getElement().hide()
                        }
                    }]
                },
                {
                    type: "html",
                    id: "noAnchors",
                    style: "text-align: center;",
                    html: '

' + CKEDITOR.tools.htmlEncode(b.noAnchors) + "
",
                    focus: !0,
                    setup: function(a) {
                        a.anchors.length < 1 ? this.getElement().show() : this.getElement().hide()
                    }
                }],
                setup: function() {
                    this.getDialog().getContentElement("info", "linkType") || this.getElement().hide()
                }
            },
            {
                type: "vbox",
                id: "emailOptions",
                padding: 1,
        &nb