6

I am trying to add an attribute when using a wysiwyg editor that uses "createLink" command. I thought it would be trivial to get back the node that is created after the browse executes that command.

Turns out, I am only able to grab this newly created node in IE. Any ideas?

The following code demonstrates the issue (debug logs at bottom show different output in each browser):

var getSelectedHTML = function() {
    if ($.browser.msie) {
        return this.getRange().htmlText;
    } else {
        var elem = this.getRange().cloneContents();
        return $("<p/>").append($(elem)).html();
    }
};

var getSelection = function() {
    if ($.browser.msie) {
        return this.editor.selection;
    } else {
        return this.iframe[0].contentDocument.defaultView.getSelection();
    }
};

var getRange = function() {
    var s = this.getSelection();
    return (s.getRangeAt) ? s.getRangeAt(0) : s.createRange();
};

var getSelectedNode = function() {
    var range = this.getRange();
    var parent = range.commonAncestorContainer ? range.commonAncestorContainer : 
                    range.parentElement ? range.parentElement(): 
                    range.item(0);
    return parent;
};


// **** INSIDE SOME EVENT HANDLER ****

if ($.browser.msie) {
    this.ec("createLink", true);
} else {
    this.ec("createLink", false, prompt("Link URL:", "http://"));
}

var linkNode = $(this.getSelectedNode());
linkNode.attr("rel", "external");

$.log(linkNode.get(0).tagName);
    // Gecko: "body"
    // IE: "a"
    // Webkit: "undefined"

$.log(this.getSelectedHTML());
    // Gecko: "<a href="http://site.com">foo</a>"
    // IE: "<A href="http://site.com" rel=external>foo</A>"
    // Webkit: "foo"

$.log(this.getSelection());
    // Gecko: "foo"
    // IE: [object Selection]
    // Webkit: "foo"

Thanks for any help on this, I've scoured related questions on SO with no success!

4

3 回答 3

14

这是我用来获取文本光标的“parentNode”的代码:

var getSelectedNode = function() {
    var node,selection;
    if (window.getSelection) {
      selection = getSelection();
      node = selection.anchorNode;
    }
    if (!node && document.selection) {
        selection = document.selection
        var range = selection.getRangeAt ? selection.getRangeAt(0) : selection.createRange();
        node = range.commonAncestorContainer ? range.commonAncestorContainer :
               range.parentElement ? range.parentElement() : range.item(0);
    }
    if (node) {
      return (node.nodeName == "#text" ? node.parentNode : node);
    }
};

我调整了我的 IE 方法以接近你的方法。经过测试和工作的 IE8、FF3.6、Safari4、Chrome5。我设置了一个jsbin 预览,您可以使用它进行测试。

于 2010-03-26T11:42:51.247 回答
1

我发现跨浏览器的选择可能会变得复杂和错误。加入浏览器文档编辑的魔力,情况会变得更糟!

我看了一下 TinyMCE 如何实现我正在尝试做的事情,并采用相同的方法来修改 jHtmlArea。

基本上,链接是用假的 href 创建的。然后,它通过搜索具有该特定 href 的链接来找到该 dom 元素。然后,您可以添加任何所需的属性并使用实际 url 更新 href。

gnarf 上面的解决方案是获取选定节点的一个很好的例子,并且适用于大多数场景。

以下是我的工作代码:

var url = prompt("Link URL:", "http://");

if (!url) {
    return;
}

// Create a link, with a magic temp href
this.ec("createLink", false, "#temp_url#");

// Find the link in the editor using the magic temp href
var linkNode = $(this.editor.body).find("a[href='#temp_url#']");

linkNode.attr("rel", "external");

// Apply the actual desired url
linkNode.attr("href", url);
于 2010-05-04T15:10:41.183 回答
0

这是一个 hacky 解决方法,但除非有人创建两个相同的链接,否则应该可以工作。

this.getSelection()在所需的浏览器中似乎都一样,所以:

var link=prompt('gimme link');

//add the thing

var text=this.getSelection();

var whatYouNeed=$('a:contains("'+text+'")[href="'+link+'"');
于 2010-03-26T10:45:01.417 回答