uniapp的微信小程序错误警告(uview项目)Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors。

Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors。

译  : 组件和引用组件的页面不能使用id选择器(#a)、属性选择器([a])和标签名选择器,请改用class选择器

 

 

 

 

 

 

https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/wxml-wxss.html

这篇文档上说: 组件和引用组件的页面不能使用id选择器(#a)、属性选择器([a])和标签名选择器,请改用class选择器

#a { } /* 在组件中不能使用 */
[a] { } /* 在组件中不能使用 */
button { } /* 在组件中不能使用 */
.a > .b { } /* 除非 .a 是 view 组件节点,否则不一定会生效 */

 

转:  https://developers.weixin.qq.com/community/develop/doc/000caa250fc8301d9658e091359c00

 

posted @ 2022-01-09 01:01  与f  阅读(8345)  评论(0编辑  收藏  举报