报错信息:For developer:Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./npm/miniprogram_npm/weui-miniprogram/cell/cell.wxss:1:1744)
代码:<scroll-view scroll-y="true" style="height:30vh">
<button disabled="{{shareBtn}}" data-id="1" bindtap="btnOpClick" class="op1" style="height:{{op1height}};top: {{op1top}};background-color: {{change}};">{{op1}}
<image wx:if="{{playing}}" src="{{ph_0}}"></image>
</button>
<button disabled="{{shareBtn}}" data-id="2" bindtap="btnOpClick" class="op2" style="height:{{op2height}};top: {{op2top}};background-color: {{change1}};">{{op2}}
<image wx:if="{{playing1}}" src="{{ph_1}}"></image>
</button>
<button disabled="{{shareBtn}}" data-id="3" bindtap="btnOpClick" class="op3" style="height:{{op3height}};top: {{op3top}};background-color: {{change2}};">{{op3}}
<image wx:if="{{playing2}}" src="{{ph_2}}"></image>
</button>
</scroll-view>
你这个报错是因为在组件里面的wxss里使用了元素选择器,id选择器这些东西
猜测应该是你直接给image标签加了样式
你可以给所有image标签加一个统一的class,
然后用这个class去控制image的样式
这个属于警告不影响你小程序的正常使用的,如果不想出现该警告可以按照提示去修改wxss或者在开发者工具内把你的基础库版本调高一点