miniUI破解办法。

在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

 

posted @ 2020-07-01 15:11  周小杰  阅读(2977)  评论(7)    收藏  举报