TinyMCE Line 在 Internet Explorer 中回归
在 Internet Explorer 中使用 tinyMCE 编辑器编辑文本时,如果我在段落之间添加额外的空行,tinyMCE 会生成以下 HTML 代码:
<p>..</p>..<p>..</p>
我的 Struts 1 ActionForm 中的 setter 报告接收以下字符串:
<p>Â </p><p>Â </p>
在 Firefox 中不会出现此问题,但仅限于 IE 8。
有谁对为什么 tinyMCE 编辑器不能正确发布 IE 8 和 Struts 1 的行返回有任何建议吗?
When editing text with the tinyMCE editor in Internet Explorer, if I add additional blank lines between paragraphs, the following HTML code is generated by tinyMCE:
<p>..</p>..<p>..</p>
The setter in my Struts 1 ActionForm reports receiving the following string:
<p>Â </p><p>Â </p>
This problem does not occur in Firefox, but only with IE 8.
Does anyone have any suggestions about why the tinyMCE editor is not correctly posting line returns with IE 8 and Struts 1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方法:添加服务器端代码以从输入字符串中删除“”字符。
Workaround: Add server-side code to remove "Â" characters from the input string.