新闻动态
你的位置:首页 > 新闻动态 > 业内资讯

ICHAT进入房间默按级别排序

来源:本站 2022-1-30 23:23:54      点击:
打开 主框架 index.htm
找到如下代码
 
this.nSort = 0 ;
 this.DoSort = function()
 { switch(this.nSort)
  { case 0: return;
   case 1: this.SortByXB(); return;
   case 2: this.SortByName(); return;
   case 3: this.SortByLevel(); return;
   case 4: this.SortByState(); return;
   case 5: this.SortByVoice(); return;
   case 6: this.SortByVideo(); return;
  }
 }
 
修改this.nSort = 0 ; 默认为 this.nSort = 3; 当然你想按默认女士就设置this.nSort = 1