我正在做一个应用程序,我想获取谷歌应用程序的屏幕截图网址。这里我可以抓住特定应用程序的网页,在该页面屏幕截图网址是div(...) 。这个div还包含标题,宽度等。但我只想获取屏幕截图网址。我怎样才能获得屏幕截图网址。 我的应用程序现在显示以下数组。
Array (
[0] => src="https://lh5.ggpht.comV07YvaK8lOPyiXOQmC4xTce7VskJzhavKOkEhoMw4KWnFNfOBB8ruIiVmRKhJ6nq8aE=h230" [1] => class="doc-screenshot-img
[2] => lightbox
[3] => goog-inline-block"data-baseUrl="https://lh5.ggpht.com/V07YvaK8lOPyiXOQmC4xTce7VskJzhavKOkEhoMw4KWnFNfOBB8ruIiVmRKhJ6nq8aE"
[4] => title="Angry
[5] => Birds
[6] => Space"
[7] => itemprop="screenshots"
[8] => />)
答案 0 :(得分:1)
不确定你在这之后到底是什么。
尝试(jQuery)
// Cycle through all screenshots
$('.doc-screenshot-img').each(function() {
// Get the URL to the screenshot
$(this).attr('src');
});