uniapp条件判断app,H5,微信小程序端

1.CSS里面判断不同的端

APP:APP端

            /*#ifdef APP-PLUS*/
            top:0;
            /*#endif*/

H5:H5端
            /*#ifdef H5*/
            top:88rpx;
            /*#endif*/

MP:小程序
            /*#ifdef MP*/
            top:0;
            /*#endif*/

2.JS里面判断不同的端

APP:APP端

            /*#ifdef APP-PLUS*/
            console.log('APP端')
            /*#endif*/

H5:H5端
            /*#ifdef H5*/
            console.log('H5端')
            /*#endif*/

MP:小程序
            /*#ifdef MP*/
            console.log('微信小程序端')
            /*#endif*/

3.在页面上判断不同的端

APP:APP端

            
             APP端 
            

H5:H5端
            
             H5端 
            

MP:小程序
           
             小程序端 
            

你可能感兴趣的:(微信小程序,小程序,前端)