mui 调用手机原生代码

mui.plusReady(function(){
            //获取手机位置经纬度
            plus.geolocation.getCurrentPosition( function ( p ) {
                    alert( "Geolocation\nLatitude:" + p.coords.latitude + "\nLongitude:" + p.coords.longitude + "\nAltitude:" + p.coords.altitude );
                }, function ( e ) {
                    alert( "Geolocation error: " + e.message );
                } );
//               获取本地相册
            void plus.gallery.pick( function() {
                alert(11);
            } );
            //蜂鸣声
            void plus.device.beep( 5 );
            //震动
            plus.device.vibrate( 300 );
            document.getElementsByClassName('mui-content')[0].style.display = 'block';
            plus.nativeUI.closeWaiting();//这里是关闭显示原生等待框
        })

你可能感兴趣的:(mui 调用手机原生代码)