gpt4 book ai didi

javascript - 获取客户端外部页面的标题

转载 作者:行者123 更新时间:2023-11-28 16:14:45 24 4
gpt4 key购买 nike

我的目标是在我的页面上打印外部页面的标题,而不需要在服务器端加载前者。

目前,我正在将 jQuery 与 Google 搜索 API 结合使用。看看以下解决方案的老套之处:

//Use google search api to get page title for link
var url = "http://ajax.googleapis.com/ajax/services/search/web?q=" + **URL** + "&v=1.0&callback=?"
//Set URL for link
$("#link").attr("href", content);
//Execute google api JSON query
$.getJSON(url, function (data) {
//Insert the unformatted title of the first result into the page
$("#title").append(data.responseData.results[0].titleNoFormatting);
});

^效果很好,但仅适用于在 Google 上编入索引的网页,这些网页是提交网址时的第一个结果。

谁能做得更好?

最佳答案

尝试YQL ,获取标题的示例查询:

select * from html where url="http://cute-kittens.tumblr.com/" and xpath='//head/title'

在他们的 console 中亲自尝试一下.

关于javascript - 获取客户端外部页面的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11841207/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com