如何将数组传递给jquery中的函数

时间:2013-02-06 11:13:03

标签: jquery html arrays

我希望将一个数组传递给一个函数(你能告诉我我是否在正确的轨道上?)

然后在函数中我希望遍历数组中的值并将每个值附加到HTML中的以下LI元素

这是我到目前为止用户将在他想要传递的URL值中编码:

var arrValues = ['http://imgur.com/gallery/L4CmrUt', 'http://imgur.com/gallery/VQEsGHz'];
calculate_image(arrValues);

function calculate_image(arrValues) {
    // Loop over each value in the array.
    var jList = $('.thumb').find('href');
    $.each(arrValues, function(intIndex, objValue) {
        // Create a new LI HTML element out of the
        // current value (in the iteration) and then
        // add this value to the list.
        jList.append($(+ objValue +));
    });
}
}

HTML

<li>
    <a class="thumb" href="" title="Title #13"><img src="" alt="Title #13" /></a>
    <div class="caption">
        <div class="download">
            <a href="">Download Original</a>
        </div>
        <div class="image-title">Title #13</div>
        <div class="image-desc">Description</div>
    </div>
</li>

1 个答案:

答案 0 :(得分:6)

如果您想传入数组,只需将其作为参数输入即可。在Javascript中,您可以将数字,字符串,数组,对象甚至函数作为参数传递。

有关缩略图构建器实现,请参阅此示例:http://jsfiddle.net/turiyag/RxHys/9/

首先,定义数组。

var bluearray = [
    'http://fc02.deviantart.net/fs30/f/2008/056/8/0/Purple_hair___Bipasha_Basu_by_mstrueblue.jpg',
    'http://static.becomegorgeous.com/img/arts/2010/Feb/20/1805/purple_hair_color.jpg',
    'http://img204.imageshack.us/img204/6916/celenapurpleqp7.jpg'
    ];
var greenarray = [
    'http://25.media.tumblr.com/tumblr_m7fqmkNEhc1qlfspwo1_400.jpg',
    'http://www.haircolorsideas.com/wp-content/uploads/2010/12/green-red-hair.jpg',
    'http://fc02.deviantart.net/fs71/i/2010/011/9/c/Neon_Yellow_and_Green_Hair_by_CandyAcidHair.jpg'
    ];

然后在加载DOM时,调用函数来加载缩略图。

$(function() {
    addThumbs(bluearray);
    addThumbs2(greenarray);
});

addThumbs使用jQuery的每个函数来使事情变得更清晰。我发现它看起来更好,并且使用正常的Javascript for循环更好。

function addThumbs(paths) {
    $.each(paths,function(index, value) {
        $("div").append('<img src="' + value + '" />');
    });
}

但如果你是原生Javascript的粉丝,那么循环的正常情况就是在addThumbs2中实现的

function addThumbs2(paths) {
    for(index in paths) {
        $("div").append('<img src="' + paths[index] + '" />');
    }
}