更改文本区域中文本后面的背景色

Changing the background-color behind the text in a textarea

本文关键字:文本 背景色 中文 区域      更新时间:2023-09-26

如何更改文本区域内的背景色?

Ext.create('Ext.form.FormPanel', {
    title      : 'Sample TextArea',
    width      : 400,
    bodyPadding: 10,
    renderTo   : Ext.getBody(),
    items: [{
        xtype     : 'textareafield',
        grow      : true,
        name      : 'message',
        fieldLabel: 'Message',
        anchor    : '100%'
    }]
});
{
 xtype: "textarea",
 name: "editor",
 value: "",
 fieldStyle: "background: #FFFF55 none repeat scroll 0 0 !important;"
}

让我知道你想要什么