给textarea动态添加加粗样式,模拟器可以在ios手机上不行。
<textarea
class
="{{item.isbold==1 ? ‘bold’ : ‘’}}" placeholder=‘输入文字’ value=’{{item.content}}’ auto-height=“true”></textarea>
.bold{
font-weight:bold;
color:#f00;
}
1、把样式改成font-size 或者color都可以动态变大小,变色,唯独font-weight无效,加粗在安卓手机和模拟器上都是有效的。
2、动态加类也一样,点一次能加粗,再取消加粗就无效了,isbold的值是一直有改变的
3、请高手指点