效率查询 - 如何获取JUST页面标题(使用PHP或JS)

时间:2016-12-20 08:00:59

标签: javascript php

以google.com为例,该网页的HTML源代码非常庞大。大约390行。

我想要的是,给定一些URL来获取页面标题......

<!doctype html><html itemscope="" itemtype="http://schema.org/WebPage" lang="en-AU"><head><meta content="/images/branding/googleg/1x/googleg_standard_color_128dp.png" itemprop="image"><link href="/images/branding/product/ico/googleg_lodp.ico" rel="shortcut icon"><meta content="origin" id="mref" name="referrer"><title>Google</title> ...

在这种情况下是Google

在PHP(或Javascript)中,有一种简单的方法可以解析页面源,但是一旦我确定了页面标题就停止了吗?当我需要的只是标题时,我不想浪费时间和带宽下载页面的其余部分。

由于

1 个答案:

答案 0 :(得分:0)

JavaScript代码如下所示:

  

var title = document.getElementByTagName(“title”);