使用Jquery判断在线/离线状态
我目前正在构建一个网站,并依靠 php fetch_content 来读取此文件(http://opi.yahoo.com/online?u=yahooid&m=a&t=1),它返回 00 表示离线,01 表示离线在线的。不知何故,我移动了我的主机,新主机无法执行 php_fetch_content,jQuery 有什么办法可以做到这一点吗? 我已经尝试过 .get() 但并不真正知道它的工作原理,所以结果证明它不起作用。任何帮助将不胜感激!
i am currently building a website and was relying on php fetch_content to read file this (http://opi.yahoo.com/online?u=yahooid&m=a&t=1) and it returns 00 for offline and 01 for online. Somehow i moved my hosting n the new hosting can't do php_fetch_content, is there is any way for jQuery to do this?
i've tried .get() and don't really know hos it works, so it turns out not working. Any help would be very appreciated!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否,由于同源策略限制,您无法使用 AJAX,除非服务器支持JSONP。
No you cannot use AJAX due to same origin policy restrictions, unless the server supports JSONP.