0

我正在尝试搜索一组图像的 SRC,然后返回所有匹配的字符串。我正在建立一个非常严格的电子商务系统,没有办法将图像链接到它的变体,所以这就是为什么我必须搜索所有图像的列表然后返回匹配的 src。(我也在使用一组 IF 语句,这样客户就可以使用 WYSIWYG 并添加新颜色)

   jQuery(document).ready(function($) {
       $('#product-variants-option-0').change(function() {
         var select_value, keyword, new_src;


         select_value = $(this).find(':selected').val();

        if (select_value == "Kelly Green") { keyword = "kelly"; };
        if (select_value == "Navy") { keyword = "navy"; };
        if (select_value == "Gunmetal Heather") { keyword = "gunmetal"; };
        if (select_value == "Olive") { keyword = "olive"; };
        if (select_value == "Cocoa") { keyword = "cocoa"; };
        if (select_value == "Black") { keyword = "black"; };
        if (select_value == "Charcoal") { keyword = "charcoal"; };
        if (select_value == "Dark Teal") { keyword = "teal"; };
        if (select_value == "White") { keyword = "white"; };
        if (select_value == "Black") { keyword = "black"; };
        if (select_value == "Garnet") { keyword = "garnet"; };
        if (select_value == "Charcoal Heather") { keyword = "charcoal-heather"; };


         // Find the image using that `src`, note that we concatenate the value
         // from `keyword`, rather than having it in a literal.
         var new_src = $('#preload img[src*=' + keyword + ']').attr('src');

         var large_src = new_src.replace('medium','large');

         // Set the image's source.
         $('div.image img').attr('src', large_src);
       });
    });

对于一张图像,这非常有效。但是我需要

var new_src = $('#preload img[src*=' + keyword + ']').attr('src'); 

作为一个数组。然后将第一个匹配的 SRC 传递给

$('div.image img').attr('src', large_src);

然后所有其余的到另一个 div

$('div.thumbs img').attr('src', new_src);
4

3 回答 3

2

我对您上一个问题的回答中,我包含了一个attrAll返回值数组的src函数。然后你只需要索引它。

这又是那个函数:

// A utility function from my arsenal; you can
// just inline this if you don't want it.
// Returns an array containing the given attribute
// from *all* of the elements in the jQuery object.
// Args:
//  name        Name of the attribute to fetch
//  blanksOkay  (Optional, default false) true if
//              you want blanks in the array for
//              blank entries or non-existant entries;
//              false if you want them left out.
$.fn.attrAll = function(name, blanksOkay) {
  var list, index;

  if (typeof blanksOkay === "undefined") {
    blanksOkay = false;
  }

  list = [];
  for (index = 0; index < this.length; ++index) {
    entry = $(this[index]).attr(name);
    if (entry || blanksOkay) {
      list.push(entry);
    }
  }
  return list;
};

用法:

var srcArray = $('#preload img[src*=' + keyword + ']').attrAll('src');

传递“...第一个匹配的 SRC”:

$('div.image img').attr('src', srcArray[0]);

我不确定您所说的“......然后所有其余部分到另一个 div”是什么意思,但它是一个数组,您可以以通常的方式从中获取值并使用它们将img标签添加到 div 或其他任何东西。

也许您的意思是您希望所有其他图像都img成为div.thumbs. 如果是这样,该答案中的另一个通用功能可能会很有用:

// Join the entries in the array with the given
// prefix and suffix.
function joinEntries(a, prefix, suffix) {
  prefix = prefix || '';
  suffix = suffix || '';
  return prefix + a.join(suffix + prefix) + suffix;
}

...因为那样你就可以这样做:

$('div.thumbs').html(joinEntries(srcArray.slice(1), "<img src='", "'>"));

...它将拇指替换img为数组中所有剩余条目的标签。

于 2010-12-23T09:22:31.497 回答
0
$('#preload img[src*=' + keyword + ']').each( function(index) {
    if (index == 0) { $('div.image img').attr('src', $(this).attr('src') ) }
    if (index == 1) { $('div.thumbs img').attr('src', $(this).attr('src') ) }
} ); 

不清楚前两个之后你想做什么......

于 2010-12-23T09:25:21.857 回答
0
$('#preload img[src*=' + keyword + ']').each(function(){
    var large_src = $(this).attr('src').replace('medium','large');
    // Set the image's source.
    $(this).attr('src', large_src);
});
于 2010-12-23T09:52:25.623 回答