打开:static/js/mobile/common.js
找到- window.location.href = href.replace(/page=\d+/, 'page=' + $(this).val());
复制代码 替换为- var href2 = href.replace(/forum-([\w]+)-\d+\.html/, 'forum-$1-' + $(this).val() + '.html');
- if(href == href2){
- href2 = href.replace(/thread-([\d]+)-\d+-([\d]+)\.html/, 'thread-$1-' + $(this).val() + '-$2.html');
- }
复制代码 |