原创

MUI-获取版本号-获取应用相关信息

<script>
        mui.init();

        function plusReady() {
            var wgtVer = null;
            // ......
            // 获取本地应用资源版本号
            plus.runtime.getProperty(plus.runtime.appid, function(inf) {
                wgtVer = inf.version; //版本号
                console.log("版本号" + wgtVer);
                localStorage.setItem('$versionName', /* JSON.stringify(wgtVer)*/ wgtVer);
                /*    console.log("版本号 2" + localStorage.getItem('$versionName', ''));*/
            });
        }
        if(window.plus) {
            plusReady();
        } else {
            document.addEventListener('plusready', plusReady, false);
        }
        mui.plusReady(function() {
            plusReady();
        });
 </script>

更多状态信息读取  http://blog.csdn.net/xiejunna/article/details/53086574
//在plusReady()方法中可以直接读取plus.runtime

取值 localStorage.getItem('$versionName', '') ;
正文到此结束
本文目录