Javascript从URL下载图像

时间:2013-03-14 11:24:48

标签: javascript web download

我遇到了问题:我想从这个网站下载图片:

http://www.oasidelleanime.com/minisiti/raccontastorie/Fascicolo1/index.htm

我可以保存页面,但是有一个问题:您在我链接的页面中看到的图像只是缩略图。我需要下载“真实”图像,单击缩略图时打开的图像。我的问题是:我可以使用任何脚本,这样我就不必手动打开所有图像(这很痛苦,真诚)?

我最诚挚的问候, 的Alessandro

1 个答案:

答案 0 :(得分:0)

如果您通过脚本表示javascript,简短的答案是否定的。这是因为称为跨站点脚本的安全漏洞。维基百科有一篇关于它的文章,请参阅http://en.wikipedia.org/wiki/Cross-site_scripting

但是可以使用wget下载带有shellscript的图像。以下脚本可能有效:

#! /bin/bash
# use this script for downloading websites using 'wget' utility
# replace URL field with the URL to be downloaded

URL="$1"

wget -Nrkpl 0 $URL

# wget flags and their functions
# -r = recursive: follows the links
# -k = changes links adresses to their local file adress
# -p = downloads images
# -l = recursion level. 0 for infinite.