如何在sencha touch中修改placeHolder的颜色

来源:互联网 发布:淘宝客qq群加人 编辑:程序博客网 时间:2024/05/17 07:21

Sencha Touch 交流 QQ 群 224711028

例子:

index.jsExt.setup({onReady: function() {new Ext.form.FormPanel({fullscreen: true,items: [{xtype: 'textfield',label: 'Name',cls: 'customField',placeHolder: 'Insert your name here'},{xtype: 'textfield',label: 'Surname',placeHolder: 'Insert your surname here'}]});}});


style.css.customField input::-webkit-input-placeholder {color: #2e4bc5;}


原创粉丝点击