GWT:如何在textarea中显示未解析的html文本?
我需要在文本区域内显示原始 HTML 文本而不解析它。 如下所示:
<textarea>
<a href="someurl">Click Here</a>
</textarea>
我应该在哪里看到锚标记和所有原始 HTML 标记。 通常您会执行以下操作:
<textarea>
<a href="someurl">Click Here</a>
</textarea>
这将在文本区域旁边显示未解析的原始锚点。 但在 UiBinder 中的 GWT "<a href="someurl">Click Here</a>"
从来没有 在文本区域内转换为 Click Here
。
有什么解决方法吗?
谢谢!
I need to display raw HTML text inside the textarea without parsing it.
Something like below:
<textarea>
<a href="someurl">Click Here</a>
</textarea>
Where I should see anchor tag and all the raw HTML tags.
Normally you do following:
<textarea>
<a href="someurl">Click Here</a>
</textarea>
Which will display the unparsed raw anchor in side the textarea.
But in GWT in UiBinder "<a href="someurl">Click Here</a>"
never
gets converted to <a href="someurl">Click Here</a>
inside the textarea.
Is there any workaround for this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 UIBinder 中,设置 widget 文本的另一种方法是将其放在标签的
text
属性中。 (在幕后,这将调用底层小部件上的.setText()
)。所以这样的东西可能对你有用(但我还没有尝试过):
In UIBinder, another way of setting the text of a widget is to put it in the
text
attribute of tag. (Under the hood, this will call.setText()
on the underlying widget).So something like this might work for you (but I have not tried it):