This question already has an answer here:
Changing a page's URL parameters
                                
                                    (1个答案)
                                
                        
                3年前关闭。
            
        

在Google Analytics(分析)的某些页面上,URL中显示了一个变量。默认值为10。URL始终看起来像这样:
    ...&trows = 10&...
有没有一种方法可以将其更改为trows = 100,以便默认显示的行数为100?
谢谢

最佳答案

if (/[\?&]trows=10[^\d]/i.test(document.location.href))
    document.location.replace(document.location.href.replace("trows=10","trows=100"));


使用document.location.replace(),以便后退按钮仍然有效。

07-27 18:48