使用jquery进行简单的跨域html请求?尝试使用插件
我正在尝试使用 jquery 和下面的代码执行一个简单的 html 请求。
$.get('http://externalsite.com/status.html', function(data) {
if (data == 1) {
//do something
}
else {
//do something else
}
});
我正在使用位于 http://james 的跨域请求插件.padolsey.com/javascript/cross-domain-requests-with-jquery/ 我将 .js 脚本添加到了我的 html 文件中,但下一步是什么?该示例使用 #container 和来自 google 的负载,但我不知道我对 html 请求做了什么。它说它适用于任何 .get 请求,我只是不知道该怎么做。感谢您的帮助。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以做任何你想做的事。阅读 .load() 和 .get()
:
此示例将
http://google.com
的内容放入id="container"
的 HTML 元素中:这与您的示例网站执行相同的操作:
这也做了与上面相同的事情:
You can do whatever you want. Read the jQuery docs for .load() and .get()
:
This example puts the contents of
http://google.com
in the HTML element withid="container"
:This does the same thing but with your example site:
This also does the same thing as above:
我不确定您的问题到底是什么,例如您可以将此代码包装到函数中并简单地调用它吗? :)
喜欢
i am not sure what your problem exactly is, can you for example wrap this code into the function and simple invoke it ? :)
like