我正在尝试使用 ajax 发送一个 html 站点,但在服务器端,css 的结构已损坏。
我的 getInfo 函数返回一个带有 html 文本的变量,看起来像这样
<div id="Center">center<button style="margin-left: 109px; margin-top: -9px; position: absolute;">juhu</button></div>
这个变量,我用ajax发送到我的php页面:
$.ajax({
url:"createFile.php",
type:"post",
dataType:"text",
data:getInfo()
});
但是在服务器站点(php页面)上,post变量的值是这样的:
<div id="Center">center<button absolute;\"="" position:="" -9px;="" margin-top:="" 109px;="" style="\"margin-left:" xmlns="\"http://www.w3.org/1999/xhtml\"">juhu</button></div>
怎么了?谢谢