我正在尝试按价格和评级对结果列表进行排序。为简单起见,我只包含了 2 个结果:Rider's Lodge 和 Olina Lodge。我编写了一个以一种方式对其进行排序的函数。
如何重新使用相同的功能对结果进行排序,以便单击“按价格排序”按升序排序,再次单击它按降序排序并在两者之间切换?
<div class="tab-content">
<div id="filters">
<p>
<a href="javascript:sort_by_rating();">Sort by Rating</a>
<br>
<a href="javascript:sort_by_price();">Sort by Price</a>
</p>
</div>
<div id="div_hotel_results" class="tab-pane active">
<form id="hotel-form">
...
</form>
<div class="results-row">
<h5>Riders Lodge</h5>
<span class="label label-info price">$103.64</span>
<span class="rating" data-rating="3.0">3.0</span>
</div>
<div class="results-row">
<h5>Olina Lodge</h5>
<span class="label label-info price">$99.64</span>
<span class="rating" data-rating="2.5">2.5</span>
</div>
</div>
</div>
<script type="text/javascript">
function sort_by_price () {
var sorted_list = [];
$('.price').each(function (index) {
sorted_list[index] = $(this).parent().parent().remove();
sorted_list[index]['cleaned_price'] = parseFloat($(this).text().replace(/[^0-9\.]+/g,""));
});
sorted_list.sort(function (a, b) {
if (a['cleaned_price'] == b['cleaned_price']) {
return 0;
} else if (a['cleaned_price'] > b['cleaned_price']) {
return 1;
} else {
return -1;
}
});
$('#hotel-form').after(sorted_list);
}
</script>