更改标记文本的颜色

时间:2016-01-23 01:32:52

标签: javascript styles selection

是否可以更改标记文字的颜色?这段文字没有id。

我不想使用“execCommand”。我是使用style.color(JS)。但我只有在拥有id时才能使用它,但文本没有且不应该有id。

我试过了:

var doc = document.getElementById("iframe_editor").contentWindow.document;  
var sel = doc.getSelection();

    if (sel != '')
    {

        sel.style.color = "red";
    }

但“sel”不是一个对象。

0 个答案:

没有答案