以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)中,有一种简单的方法可以解析页面源,但是一旦我确定了页面标题就停止了吗?当我需要的只是标题时,我不想浪费时间和带宽下载页面的其余部分。
由于
答案 0 :(得分:0)
JavaScript代码如下所示:
var title = document.getElementByTagName(“title”);