在 jQuery 环境中创建 XML 文档
参考了 JQuery 文档,其中提到了这段代码。
var xmlDocument = [create xml document];
$.ajax({
url: "page.php",
processData: false,
data: xmlDocument,
success: handleResponse
});
但我试图在 Adobe AIR 环境中发出相同的请求,但它给出了解析错误。
有没有使用 jQuery 创建 xml 文档的特定方法。
Have referred to JQuery docs where they mention this piece of code.
var xmlDocument = [create xml document];
$.ajax({
url: "page.php",
processData: false,
data: xmlDocument,
success: handleResponse
});
but i am trying to make the same request in Adobe AIR environment its giving a parse error.
Is there any specific way of creating an xml Document using jQuery.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
谢谢大家,
我在这个位置有一个插件
Thank you all
I have got a plugin at this location
为了使服务器能够获取数据,您需要说明
数据在传输的另一端没有变量名称。
in order for the server to get the data, you need to say
otherwise the data has no variable name on the other side of the transmission.