JSON - 返回 html
我需要将请求发送到外部网站并返回 html。然后我需要提取 中的文本。我对 JSON 完全陌生,不确定是否可以使用 ajax 来做到这一点。
请有人指出我正确的方向和/或给出示例代码。
I need a request to be sent to an external website with the html back. I then need to extract the text within <td></td>
. I am completely new to JSON, and am unsure if it's possible to do this using ajax.
Please could someone point me in the right direction and/or give example code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能直接通过 JS 向外部站点发出请求并从中读取 HTML。 同源政策禁止这样做。外部站点必须通过提供 JSONP 或 CORS(尚未受所有浏览器支持)之类的内容来支持您,或者您必须通过自己的服务器代理请求。
You can't directly make a request to an external site via JS and read HTML from it. It's forbidden by the same origin policy. Either the external site has to support you by offering something like JSONP or CORS (not supported by all browsers yet), or you'll have to proxy the request via your own server.