我面臨分頁計數器的一個問題,我使用yii2分頁,按鍵時它要到另一個網頁即http://localhost/web/index.php?r=test/page=1
所以我需要在上URL 遞增頁面值我已經在做這樣的,但它無法正常工作時,該值僅增加一次,我需要增加值的每一頁分頁與按鍵時(右箭頭鍵)
<script type="text/javascript">
var val = 1;
$(document).keydown(function (event) {
val++
if (event.keyCode == '39') {
window.location.href = "localhost/web/index.php?r=test/page="+ val;
}
});
</script>
請給一些建議,非常感謝。