我有一个网站,其中包含的数据很少,有些数据采用分页格式。 但是,当我尝试使用view-source获取url的HTML数据时,在其中找不到分页数据。并且我进入分页数据的第二列,网址也没有改变。
我的问题: -
How to fetch the hidden data or data that is bought by Javascript into the HTML format
希望你们都问我的问题。提前致谢
更新部分: -
我基本上是在试图抓取数据,所以当我输入网址并尝试抓取数据时,我不会得到所需的数据,因为数据不是以HTML格式存在,而是由Javascript / JQuery购买
我的简单代码: -
$html = file_get_html(myurl);
print $html;
//Wen i print i wont get the data that is fetched by Javascript,
我怀疑: -
How to fetch the data from Java script ???