html文本编辑器Ajax控件工具包
我正在使用 ajax 控制工具包中的 html 编辑器。当我获取内容时,它会给我一个包含所有格式标记的 html 内容,是否可以从此控件获取预览内容。提前致谢
I am using html editor from ajax control tool kit. When i get the content its giving me an html content withe all the formatting tags is it possible to get the preview content from this control. Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
预览只是一个在客户端填充了内容 html 的 iframe。除此之外,内容并没有真正的“价值”。如果您只想要文本,您可能可以从内容中解析出它。
我认为该控件的内容始终格式良好(刚刚做了一些测试 这里),因此您可以使用 xml:
请注意,这通常不适用于 html - 仅适用于此控件的输出。
The preview is just an iframe that has been filled with the content html at the client side. There isn't really a "value" for the content other than this. If you just wanted the text you can probably parse this out of the content.
I think the content from this control is always well-formed (just did some testing here), so you can use xml:
Note that this won't work in general for html - just the output from this control.