美文网首页
江苏电信开通 VoLTE 9.21 可用

江苏电信开通 VoLTE 9.21 可用

作者: 0晨鹤0 | 来源:发表于2018-09-21 19:32 被阅读0次

    搬运,原帖:http://bbs.8080.net/thread-881807-1-1.html

    主要原理是利用 js 修改电信官网开通按钮的行为。

    推荐使用 chrome 浏览器。首先打开 VoLTE 的开通页面,会提示登录,选择手机,通过密码或短信验证码登录。此时如果直接点击开通会看到下面提示:

    F12 打开浏览器调试界面,切换到 Console 选项卡,输入下面代码并回车执行:

    function handlingNow(){
            var isLogin = "1";
            if(isLogin!='1'){
                     showLoginBox();
                     return;
            }
            var goodsId=$('#goodsId').val();
            if("7b5d70b8f5494f4687cd41cb8583ex70"==goodsId){
                    $.ajax({
                            url :'/nservice/businessHandleSave/checkWhiteList',
                            type : 'post',
                            dataType : 'json',
                            async:false,
                            data : {
                                    goodsId : goodsId
                            },
                            success : function(data) {
                                    if (data == '0') {
                                             $('.tk-bg').show();
                                         $('.ywbl_dg_tc').show();
                                            var boxHeight = $('.ywbl_dg_tc').height();
                                            var boxWidth = $('.ywbl_dg_tc').width();
                                            $('.ywbl_dg_tc').css({'margin-top':-boxHeight/2,'margin-left':-boxWidth/2});
                                            console.log(boxHeight);
                                    }else{
                                            layer.alert("该业务即将上线,敬请期待!");
                                            return;
                                    }
                            }
                    });
            }else{
                     $('.tk-bg').show();
                 $('.ywbl_dg_tc').show();
                    var boxHeight = $('.ywbl_dg_tc').height();
                    var boxWidth = $('.ywbl_dg_tc').width();
                    $('.ywbl_dg_tc').css({'margin-top':-boxHeight/2,'margin-left':-boxWidth/2});
                    console.log(boxHeight);
            }
            
    }
    
    执行 js 代码

    再次点击按钮,神奇的事发生了。填写验证码和短信验证码后即可成功开通,目前是0元/月,也就是免费的,放心使用~

    注意:这里只是电信方面开通了,具体能否使用要看你的手机是否支持。目前主流的旗舰机都已经支持电信 VoLTE,可能需要重启才能正常打开。

    以三星为例,进入设置-连接-移动网络,开启VoLTE高清通话即可。

    相关文章

      网友评论

          本文标题:江苏电信开通 VoLTE 9.21 可用

          本文链接:https://www.haomeiwen.com/subject/bquznftx.html