请多多包涵,因为我是 gwt 和前端方面的新手。我有一个 html 字符串:
String s=
"<html><head><title>Hello World</title></head><body><b>Hello World</b></body></html>";
(我在标签中使用空格来防止文本显示“htmlized”。)
//and gwt RichTextArea control->richTextArea
richTextArea.setHTML(s);
//So far so good as the document String displays as desired.
//Now comes the problem...
String transformed = richTextArea.getHTML();
富文本区域剥离外部并仅返回内部 html。即 body、html 和 head 标签被剥离。
问:我如何获得仅显示富文本区域中发生的修改的 html 字符串。即,原始的“外部”标签不会丢失。
希望我足够清楚。