1
我的jQuery腳本單獨更改搜索結果鏈接,但我想一起更改它,我想這個鏈接格式:jQuery腳本修改
?page=1&sort=1&order=1
這裏是一個jQuery腳本到modificate:
// Change Sort Type
$(".sort").change(function() {
editResults("?page=1&sort="+$(this).val());
});
// Change Order Type
$(".order").change(function() {
editResults("?page=1&order="+$(this).val());
});