请耐心等待我,因为我是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。即身体,html和头部标签被剥离。
问我如何获得返回的html字符串,只显示在富文本区域中显示的修改..即原始的“外部”标记不会丢失。
希望我充分清楚。
答案 0 :(得分:0)
您不必在setHTML <b>hello world<b/>
中设置它们就足够了。
此外,如果您设置外部标记,则无法获取,因为它们不会在文本格式中添加任何内容。