是否可以更改标记文字的颜色?这段文字没有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”不是一个对象。