uni-app 条件编译

发布时间 2023-09-21 10:19:33作者: zy89898976

一、在某个平台编译  #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(微信小程序)