gpt4 book ai didi

javascript - 删除焦点上的空文本

转载 作者:行者123 更新时间:2023-11-28 00:58:29 25 4
gpt4 key购买 nike

我目前正在使用 ExtJS。我有一个文本字段,其中设置了一个空文本作为配置。 “emptyText:'请输入'”

当我点击它时,它不会消失。只有当我输入一些东西时,它才会消失。有什么办法可以做到这一点吗?

最佳答案

我不太喜欢这个解决方案,但我想出了这个( viewable here ):

Ext.application({
name : 'Fiddle',

launch : function() {
Ext.create('Ext.form.Panel', {
title: 'Contact Info',
width: 300,
bodyPadding: 10,
renderTo: Ext.getBody(),
items: [{
xtype: 'textfield',
name: 'name',
fieldLabel: 'Name',
allowBlank: false, // requires a non-empty value,
emptyText: 'blah',
originalEmptyText: 'blah',
listeners: {
focus: function() {
this.emptyText = ' '; // if you set it to empty string, it doesn't work
this.applyEmptyText();
},
blur: function() {
this.emptyText = this.originalEmptyText;
this.applyEmptyText();
}
}
}]
});
}
});

关于javascript - 删除焦点上的空文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25946385/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com