我正在制作一个使用Google搜索api的网络应用程序,但是我的问题是它仅从网站标题中获得前10个单词。有什么办法可以扩展以获得整个标题,或者更好的选择是获取网页的内容并仅解析<title>
标记的内容?我正在使用纯JavaScript。谢谢!
答案 0 :(得分:0)
您将必须请求URL,获取HTML并从HTML中解析出标题。
function httpGet(theUrl)
{
var xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
xmlHttp.send( null );
return xmlHttp.responseText;
}
httpGet('http://some/url', function(response) {
// parse the title tag here
});