admin管理员组文章数量:1339197
I'm tweaking a wysiwyg editor, and I'm trying to create an icon which will strip selected text of h2
.
In a previous version, the following mand worked perfectly:
oRTE.document.execCommand("removeformat", false, "");
But in the current version, although that mand successfully removes from selected text such tags as bold, underline, italics, it leaves the h2
tag intact.
(Interestingly enough, execCommand("formatblock"...)
successfully creates the h2
tag.)
I'm thinking that I'm going to have to abandon execCommand
and find another way, but I'm also thinking that it will be a lot more than just 1 line of code! Would be grateful for suggestions.
I'm tweaking a wysiwyg editor, and I'm trying to create an icon which will strip selected text of h2
.
In a previous version, the following mand worked perfectly:
oRTE.document.execCommand("removeformat", false, "");
But in the current version, although that mand successfully removes from selected text such tags as bold, underline, italics, it leaves the h2
tag intact.
(Interestingly enough, execCommand("formatblock"...)
successfully creates the h2
tag.)
I'm thinking that I'm going to have to abandon execCommand
and find another way, but I'm also thinking that it will be a lot more than just 1 line of code! Would be grateful for suggestions.
3 Answers
Reset to default 8You can change your format to div, it's not the best solution but it works and it's short:
document.execCommand('formatBlock', false, 'div')
There is also this other solution to get the closest parent from selected text then you can unwrap it, note that this can be some tag like <b>:
var container = null;
if (document.selection) //for IE
container = document.selection.createRange().parentElement();
else {
var select = window.getSelection();
if (select.rangeCount > 0)
container = select.getRangeAt(0).startContainer.parentNode;
}
$(container).contents().unwrap(); //for jQuery1.4+
This is in accordance with the proposed W3C Editing APIs. It has a list of formatting elements, and the H#
elements are not listed. These are considered structural, not simply formatting. It doesn't make any more sense to remove these tags than it would to remove UL
or P
.
I think you can use the Range object. you can find it from Professional JavaScript for Web Developers 3rd Edition. chapter 12(12.4) and chapter 14(14.5) ...
an example from that book:
var selection = frames["richedit"].getSelection();
var selectedText = selection.toString();
var range = selection.getRangeAt(0);
var span = frames["richedit"].document.createElement("span");
span.style.backgroundColor = "yellow";
range.surroundContents(span);
本文标签: Javascript execCommand(quotremoveformatquot) doesn39t strip h2 tagStack Overflow
版权声明:本文标题:Javascript: execCommand("removeformat") doesn't strip h2 tag - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743578145a2505339.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论