如何使用jquery从图像URL下载多个图像(相册)?

时间:2014-10-20 11:48:54

标签: javascript jquery html image download

我有两个网站。在一个网站我显示两个网站的图像,现在我想保留一个按钮作为下载专辑,以便用户可以下载这些(多个)图像作为专辑..我该怎么办。 审查了这个Downloading multiple images files with jquery但没有工作。

截至目前,我尝试使用以下显示相册的图片网址。但不知道如何使用src

下载
(function ($) {
  $(document).ready(function() {
      $('.mm-download-album').click(function(){ //id of mm-download-album is rel of all images which are in that album.
          var element_name = '.stackfive a[rel^="'+this.id+'"] img';
          $('.'+element_name).each(
            function(){
                alert(this.title+this.src);
               });
            });
});

现在使用' this.src'我想下载图片..

编辑:以下是我的PHP函数

$file = urldecode($_GET['file']);
  $title = str_replace(" ","",$_GET['title']);
  $alt = $_GET['alt'];
  if($alt != NULL) {
    header('Content-Disposition: attachment; filename='.$title._.$alt);
  }
  else if($alt == NULL) {
    header('Content-Disposition: attachment; filename='.$title);
  }
  header('Content-Type: ' . get_image_type($file));
  readfile($file);

0 个答案:

没有答案