// #ifedf H5
和 // #endif
必须成对出现
注意注释方式不同
<!-- #ifedf H5 --> <view>只在H5页面中显示</view> <!-- #endif --> <!-- #ifedf MP-WEIXIN --> <view>只在微信小程序中显示</view> <!-- #endif -->
methods: { alertMessage() { // #ifedf H5 alert('这一段只会在h5中执行') // #endif // #ifedf MP-WEIXIN alert('这一段只会在微信小程序中执行') // #endif } }
/* 在h5中使用这一套css */ /* #ifedf H5 */ .container { color: red; view { ..... } } /* #endif */ /* 在微信小程序中使用这一套css */ /* #ifedf MP-WEIXIN */ .container { color: green; view { ..... } } /* #endif */