在boot.js中增加以下代码

var WinAlertss = window.alert;
window.alert = function (e) {
if (e != null && e.toString().indexOf("试用到期") > -1) {
//和谐了
console.log(e.toString())
}
else { 
WinAlertss(e);
}
};

  

此方法在旧版本中管用,新版本破解方法(测试于jQuery MiniUI 3.9 Date : 2019-03-21 版本):

再增加以下代码

 

var execscript = null;
window.execScript = function (e)
{
    if (e.toString().indexOf("试用到期") > -1) {
      //  console.log(1111);
    }
    else {
        eval(e);
    }
}

  

  

大家看看就好,不要瞎传。。

旧版本分享:

链接:https://pan.baidu.com/s/1rUAjlQzkvVl45kQyLqfP5w
提取码:ggjh

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-09
  • 2022-12-23
  • 2022-12-23
  • 2021-10-09
  • 2022-12-23
  • 2021-12-25
猜你喜欢
  • 2021-11-29
  • 2021-08-10
  • 2022-12-23
  • 2022-01-30
  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
相关资源
相似解决方案