js---
APP:
/*#ifdef APP-PLUS*/console.log('APP-PLUS');
/*#endif*/
H5:
/*#ifdef H5*/
console.log('H5');
/*#endif*/
MP-WEIXIN:
/*#ifdef MP-WEIXIN*/
console.log('MP-WEIXIN');
/*#endif*/
css---
APP:
/*#ifdef APP-PLUS*/
width:10rpx;
/*#endif*/
H5:
/*#ifdef H5*/
width:110rpx;
/*#endif*/
MP-WEIXIN:
/*#ifdef MP-WEIXIN*/
width:1110rpx;
/*#endif*/
html---
标签:uniapp,WEIXIN,APP,ifdef,H5,MP,endif From: https://blog.csdn.net/weixin_63242174/article/details/142954180APP:APP端
<!-- #ifdef APP-PLUS -->
<view> APP-PLUS </view>
<!-- #endif -->
H5:H5端
<!-- #ifdef H5 -->
<view> H5 </view>
<!-- #endif -->
MP-WEIXIN:小程序
<!-- #ifdef MP-WEIXIN -->
<view>MP-WEIXIN</view>
<!-- #endif -->