添加一个css类作为
<style type="text/css">
.bc-tenant textarea {
font-weight: bold;
}
</style>
现在在 textarea 的配置中访问那个 css 类,它是 bc-tenant
new Ext.FormPanel({
height: 100,
renderTo: Ext.getBody(),
items: [{
xtype: 'textarea',
fieldLabel: 'Name',
itemCls: 'bc-tenant'
}]
});