使用HTML获取div中的数据

时间:2015-12-19 19:39:28

标签: html fetch

只是想知道如何在一个精确的位置获取网站中的数据;例如在div类“test”中的body中,并在我自己的网站上以href。

检索它

1 个答案:

答案 0 :(得分:1)

这称为抓取,你可以用很多不同的方式来做。如果有问题的网站属于您,您可以轻松使用javascript来获取div的内容,例如:

var content = document.getElementById("divID").html;

您希望按类检索它,但类名不一定是各个元素唯一的,因此不起作用。

如果您不拥有相关网站,您仍然可以使用the curl command使用PHP解析内容来获取内容:

    // create curl resource 
    $ch = curl_init(); 

    // set url 
    curl_setopt($ch, CURLOPT_URL, "example.com"); 

    //return the transfer as a string 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

    // $output contains the output string 
    $output = curl_exec($ch); 

    // close curl resource to free up system resources 
    curl_close($ch);