一、在某个平台编译 #ifdef
1.单个平台
<!-- #ifdef H5-->
<!-- #endif-->
2.多个平台
<!-- #ifdef H5 || APP-PLUS-->
<!-- #endif-->
3. js 中
// #ifdef H5
// #endif
4. style 中
/* #ifdef H5 */
/* #endif */
二、 除了某平台均存在 #ifndef
<!-- #ifndef H5 -->
<!-- #endif-->
H5 APP-PLUS(app) MP-WEiXIN(微信小程序)
标签:endif,app,平台,H5,编译,ifdef,uni From: https://www.cnblogs.com/zengyu123/p/17719246.html