Показать сообщение отдельно
  #15 (permalink)  
Старый 20.07.2017, 14:47
Профессор
Отправить личное сообщение для smart-create Посмотреть профиль Найти все сообщения от smart-create
 
Регистрация: 25.10.2016
Сообщений: 157

Dilettante_Pro, прошу прощения, не разобрался

скрипт выглядит так:
for (var i = 0; i < other_arr.length; i++) {
	var $other_name = other_arr[i].split('|')[0],
		$other_min = other_arr[i].split('|')[1],
		$other_max = other_arr[i].split('|')[2],
		$product_arr = new Array();

	$('.product').each(function(){
		$product_arr.push( $(this).find('[data-filter_name="'+$other_name+'"]').data('filter_name') + '|' + $(this).find('[data-filter_name="'+$other_name+'"]').data('filter_val').split(' ')[0].replace(',', '.') );
	})
        console.log($product_arr);
}


Правильно ли я понял что нужно переделать вот так:
$product_arr = new Array();

for (var i = 0; i < other_arr.length; i++) {
	var $other_name = other_arr[i].split('|')[0],
		$other_min = other_arr[i].split('|')[1],
		$other_max = other_arr[i].split('|')[2];

	$('.product').each(function(){
		$product_arr.push( $(this).find('[data-filter_name="'+$other_name+'"]').data('filter_name') + '|' + $(this).find('[data-filter_name="'+$other_name+'"]').data('filter_val').split(' ')[0].replace(',', '.') );
	})
        console.log($product_arr);
}
Ответить с цитированием