如何跨域获取HTML代码?
如何跨域获取html代码(完整的div代码)。我听说我们可以通过使用jquery
、Ajax
、Json
概念来获得。我试图研究这些,但我不明白如何访问。请举一些简单的例子。
How to get html code (complete div code) from cross domain. I heard that we can get by using jquery
, Ajax
, Json
concepts. I tried to research these but I didn't understand how to access. Please give any simple examples.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议编写一个服务器端页面、服务、处理程序等...来执行跨域请求以获取 html 并提供服务。然后,您可以使用 jquery 执行 ajax 调用来获取服务器端处理程序(位于您的域中)的结果。
您没有指定您使用的服务器端技术(如果有),所以我不确定这是否是一个选项,我假设您正在执行某种类型的屏幕抓取?
这是一个 PHP 示例 和 ASP.NET 示例 实现。
I would suggest writing a server side page, service, handler, etc... that does the cross domain request to grab the html and serves it up. Then you can use jquery to do an ajax call to fetch the results of your server side handler (which would be located in your domain).
You didn't specify what server side technology your using (if any) so I am not sure if this is an option and I am assuming your doing some type of screen scraping?
Here is a PHP sample and an ASP.NET sample implementation.