gpt4 book ai didi

jquery - 使用 ajax 发送 Html 错误的 Css 结构

转载 作者:行者123 更新时间:2023-11-28 12:32:24 26 4
gpt4 key购买 nike

我正在尝试使用 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="\&quot;margin-left:" xmlns="\&quot;http://www.w3.org/1999/xhtml\&quot;">juhu</button></div>

怎么了?谢谢

最佳答案

如果我没记错的话,这应该可行:

$.ajax({
url:"createFile.php",
type:"post",
dataType:"html",
processData:false,
data:getInfo()
});

关于jquery - 使用 ajax 发送 Html 错误的 Css 结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18164911/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com