CKEditor向带有属性的HTML标签添加反斜杠
当我提交带有反斜杠的页面时,CKEditor 会转义所有 HTML 属性。
<img alt=\"\" src=\"/ckfinder/userfiles/images/a.jpg\" style=\"width: 600px; height: 450px;\" />
它在我的本地计算机上工作正常,问题仅发生在实时服务器中。
可能是什么问题?
CKEditor is escaping all the HTML attributes when I submit the page with backslashes.
<img alt=\"\" src=\"/ckfinder/userfiles/images/a.jpg\" style=\"width: 600px; height: 450px;\" />
It's working fine in my local machine and the issue is happening only in the live server.
What could be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 php 手册中的示例代码修复了它
Fixed it using sample code from php Manual