options
タグ内の数を取得し、select
それから同じ数の画像パスを生成したいと思います。
$optionIndex = $("option", "select").index; // 2
imagePath = "/images/slider/slide-"
$images = "[" + imagePath + $optionIndex + ".jpg" + "]";
$(window).load(function() {
var $slider = $(".slider").slider({
images: $images // ideally this would show ["image1.jpg", "image2.jpg" etc…]
});
}