如何使用ajax通过jquery获取其他网站的标题?
例如,我想获取Google,如果我通过'www.google.com',但我发现跨域调用使我在jquery中失败......有什么办法吗解决它吗?谢谢。
For example, I would like to get Google, if I pass the 'www.google.com', but I find that the cross domain call make me do this fail in jquery..... ....Is there any way to solve it? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以使用ajax和php来做到这一点,ajax请求php文件将从您的url中获取所需的内容,之后您可以使用RegExp或其他方法从页面内容中获取标题。
用于获取网页内容的 PHP 脚本如下所示:
您唯一需要做的就是如何从该页面获取标题。
问候。
It is possible to do this with ajax and php, ajax request to php file which will get the desired from you url and after that u can use RegExp or other method to get the title from the page content.
PHP Script to fetch the web page content will look like:
The only thing who you will need to do is how to get the title from that page.
Regards.
您可以制作服务器站点代理。从本地服务器站点文件打开 url。
我曾经用 PHP 做了一个:
proxy.php
然后使用像这样的 ajax 调用:
但是但是但是......
这取决于你的服务器,它是否理解 PHP 并允许你打开交叉- 使用 PHP 的域文件?
此脚本将确定扩展名
html
、php
、css
、json
等的内容类型。否则, 然后你可以使用jQuery ajax方法来接收内容:
希望它有帮助!
安德烈亚斯
You can make a serversite proxy. Open the url from a local server site file.
I once made one in PHP:
proxy.php
And then using ajax call like this:
But but but....
This depends on your server, does it understand PHP and does it allow you to open cross-domain files using PHP?
Else this script is determination the content-type from extension
html
,php
,css
,json
, etc.And then you can use jQuery ajax method to receive the content:
Hope it helps!
Andreas