我使用 Paginator django,当我点击页面按钮时。url 更改为:/admin/orders/?page=2 现在我想在 url 参数 中设置状态/admin/orders/?status=1,如下所示: 。有用!但在这种情况下,当我更改页面时,状态参数被清除!我想像这样在 url 中设置两个参数: /admin/orders/?status=1&page=2 我怎样才能用 js 解决这个问题并获得像上面那样干净的 url?这是我的想法,但不起作用:
$(document).ready(function(){
$("#status-filter").click(function(){
var s = $("#status-value").val();
if(window.location.href.indexOf("?") > -1)
window.location.href = window.location.href+"&status="+s;
else
window.location.href = window.location.href+"?status="+s;
})
});
蝴蝶刀刀
相关分类