“&”的问题使用ajax将数据发布到php时的签名
我使用tinyMce 作为我的编辑器。 发送内容以保存在数据库中或回显它一切都很好。但是当&符号“&”时来了,之后的所有数据都被截断并且不保存在数据库中或回显 我应该怎么办。这里我有文件,只有1kb,请下载,运行它 谢谢大家。
如果你能找到摆脱的方法“&”的标志告诉我和其他人如何......
i use tinyMce as my editor.
everything is fine with sending content to save in database or echo it out. but when an ampersand sign "&" comes , all data after that truncated and dont save in database or echo out
what should i do. here i have file , it's only 1kb, please download it, run it
thank you everyone.
please if you could fine a way to get rid of "&" sign tell me and others how... .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题肯定出在js上。您应该使用encodeURIComponent()来发送urlencoded信息。如
w3schools 上的encodeURIComponent()
the problem is surely in the js. you should use encodeURIComponent() to send urlencoded information. as in
encodeURIComponent() on w3schools