如何在XUL环境下进行ajax调用
在 XUL 环境中,我使用 JQuery 尝试了不同的方法,例如
$.ajax({
url:'http://www.X-site.com/api/call.php?q=test',
success: function(){alert('success');},
error: function(req,str,e){alert(str)}
});
没有收到任何回调....但已在 X 站点上发出并接收了呼叫。这是 X-Site 呼叫。 使用 jsonGet 发布了类似的问题
如何我在 XUL 环境中进行 AJAX 调用,除了 jQuery 之外还有其他方法吗?
in XUL environment I tried different method using JQuery such as
$.ajax({
url:'http://www.X-site.com/api/call.php?q=test',
success: function(){alert('success');},
error: function(req,str,e){alert(str)}
});
Not getting any callback.... But the call has been made and received on the X-site. This is a X-Site call.
Posted a similar question using jsonGet
How can I make an AJAX call in XUL env., any other means than jQuery ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它基本上不适用于标准 jQuery。
但 XUL 文档告诉您如何做到这一点:
此处
It basically does not work with standard jQuery.
But the XUL documentation tells you how to do it :
here