从 Ajax HtmlEditor 获取解码/非 html
我正在努力从 AJAX HtmlEditor
中检索纯文本内容。
我正在使用 editor.get_content()
检索内容,并且我需要它采用纯文本格式,以便我可以与内容的初始值进行比较。这需要在客户端用 Javascript 完成。
例如,我需要的纯文本是这样的 -
<a href='blah' ....
我得到的是:
<a shape="rect" href="blah".....
我无法使用以下答案,因为我无法指定静态 iframe
。除非有办法动态检索它?
I am struggling to retrieve content as plain text from the AJAX HtmlEditor
.
I am using editor.get_content()
to retrieve the content and I am needing it to be in plain text so that I can compare to the initial value of the content. This needs to be done client side in Javascript.
For example the plain text I require is along the lines of -
<a href='blah' ....
What I'm getting out is:
<a shape="rect" href="blah".....
I cannot use the following answer as i am unable to specify a static iframe
. Unless there is a way to dynamicly retieve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。
http://htmleditor.codeplex.com/
它对我来说效果很好。
try this one.
http://htmleditor.codeplex.com/
Its works fine for me.