我这样做的方法是遍历选择中的节点并删除内联节点(可能不理会<br>
元素)。这是一个示例,为方便起见,使用我的Rangy库。它适用于所有主流浏览器(包括 IE 6),但并不完美:例如,它不会拆分部分选择的格式元素,这意味着完全删除了部分选择的格式元素,而不仅仅是选择的部分。要解决这个问题会更加棘手。
演示:http: //jsfiddle.net/fQCZT/4/
代码:
var getComputedDisplay = (typeof window.getComputedStyle != "undefined") ?
function(el) {
return window.getComputedStyle(el, null).display;
} :
function(el) {
return el.currentStyle.display;
};
function replaceWithOwnChildren(el) {
var parent = el.parentNode;
while (el.hasChildNodes()) {
parent.insertBefore(el.firstChild, el);
}
parent.removeChild(el);
}
function removeSelectionFormatting() {
var sel = rangy.getSelection();
if (!sel.isCollapsed) {
for (var i = 0, range; i < sel.rangeCount; ++i) {
range = sel.getRangeAt(i);
// Split partially selected nodes
range.splitBoundaries();
// Get formatting elements. For this example, we'll count any
// element with display: inline, except <br>s.
var formattingEls = range.getNodes([1], function(el) {
return el.tagName != "BR" && getComputedDisplay(el) == "inline";
});
// Remove the formatting elements
for (var i = 0, el; el = formattingEls[i++]; ) {
replaceWithOwnChildren(el);
}
}
}
}