我在 ExtJs 4.1 中获得了一个 textarea 并想修改字体系列和大小。
style : 'font-family: courier new, font-size: 8px'
style : {
'fontFamily' : 'courier new',
'fontSize' : '8px'
}
我也试过这样:
oTextarea.el.applyStyles({
'font-family' : 'verdana',
'font-size' : '8px'
});