我几乎完成了这个问题:我用字体大小包围选定的文本,然后将其发送到 textarea。
但是跨度一直在添加。我想我需要知道我的跨度是否已经在选择中......并且只需更改字体大小......请帮助
见小提琴:组合框的大小在右上角
看看这里的代码:
//get selection content
content = selection.extractContents();
//create span and wrap it around selection
fontEl = document.createElement ("span")
fontEl.style.fontSize=font_size+'px'
fontEl.appendChild(content);
mod_text = fontEl.outerHTML
old_text=fontEl.innerHTML
selection.insertNode(fontEl);
//END----------------------------
//alert(fontEl.firstChild.nodeName)