(function($){ $(document).ready(function(){ const eleGlItem = $('.gl_Item'), funcGetReview = ( itemCode, callback ) => { $.ajax({ type:'GET', url:'/fs/alamode/' + itemCode + '?rand=' + Math.random(), dataType:'html', error:function( jqXHR, textStatus, errorThrown ){ console.log(textStatus); callback(); }, success:function( response, textStatus, jqXHR ){ const eleItemReviewParent = $('#item_review_parent_' + itemCode), eleFS2ReviewEditAverageInner = $(response).find('.FS2_ReviewEditAverage:eq(0) > p:eq(0)'), eleFS2ReviewButtonTextLink = $(response).find('.FS2_ReviewButton_textLink').eq(0); if(!eleFS2ReviewEditAverageInner[0]){ eleItemReviewParent .html('\ \ '); callback(); return false; } eleItemReviewParent .html('\ \ ' + eleFS2ReviewEditAverageInner.html().replace( 'この商品の平均評価:', '' ) + '' + eleFS2ReviewButtonTextLink.html() + '\ \ \ '); callback(); } }); }, funcExecuteGetReview = ( index, len, ele ) => { let eleItemGroup = ele.eq(index).find('> .itemGroup').eq(0); if(!eleItemGroup[0]){ ++index; if(index < len) funcExecuteGetReview( index, len, ele ); return false; } let eleAnchor = eleItemGroup.find('> a').eq(0); if(!eleAnchor[0]){ ++index; if(index < len) funcExecuteGetReview( index, len, ele ); return false; } let attrHrefAnchor = eleAnchor.attr('href') + '/', matchAttrHrefAnchor = attrHrefAnchor.match(/([a-zA-Z\-_\d]+?)[\/]*$/); if(matchAttrHrefAnchor === null){ ++index; if(index < len) funcExecuteGetReview( index, len, ele ); return false; } ele.eq(index).append('
'); funcGetReview( matchAttrHrefAnchor[1], () => { //console.log(index); ++index; if(index < len) funcExecuteGetReview( index, len, ele ); } ); }; funcExecuteGetReview( 0, eleGlItem.length, eleGlItem ); }); })(jQuery);