Home >Backend Development >PHP Tutorial >ajax传编辑器的内容到php,php端代码不完整,该怎么解决

ajax传编辑器的内容到php,php端代码不完整,该怎么解决

WBOY
WBOYOriginal
2016-06-13 12:06:13889browse

ajax传编辑器的内容到php,php端代码不完整

<br />               var cont=UM.getEditor('myEditor').getContent();<br />		alert(cont);<br />		$.ajax({<br />			type: "POST",<br />			url : 'a.php',<br />			data: 'content='+ cont,<br />			dataType: "html",<br />			async:false,	<br />			success: function (data) {<br />				alert(data);<br />			}<br />		})	<br />


以上代码做了二次弹出,但代码完全不一下,到了php端,代码到了字体样式那就断了,不知道怎么会事,




------解决方案--------------------
是不是转义字符的原因
------解决方案--------------------

引用:
Quote: 引用:

是不是转义字符的原因

我不知道呀,如果是转义了,那应该怎么解决


&是转义了吧,前面插入一个 \ 试试
------解决方案--------------------
你把 php 收到的内容写到文件里去
在文件里查看
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn