easyui textbox 隐藏_EasyUI 带清除图标的文本框(TextBox with Clear Icon)_easyui demo

该示例展示了如何在EasyUI中创建一个带有清除图标的文本框,当输入内容时,图标可见,点击图标可清空输入并聚焦文本框。
摘要由CSDN通过智能技术生成

TextBox with Clear Icon

This example shows how to create an textbox with an icon to clear the input element itself.

源代码

TextBox with Clear Icon - jQuery EasyUI Demo

TextBox with Clear Icon

This example shows how to create an textbox with an icon to clear the input element itself.

$.extend($.fn.textbox.methods, {

addClearBtn: function(jq, iconCls){

return jq.each(function(){

var t = $(this);

var opts = t.textbox('options');

opts.icons = opts.icons || [];

opts.icons.unshift({

iconCls: iconCls,

handler: function(e){

$(e.data.target).textbox('clear').textbox('textbox').focus();

$(this).css('visibility','hidden');

}

});

t.textbox();

if (!t.textbox('getText')){

t.textbox('getIcon',0).css('visibility','hidden');

}

t.textbox('textbox').bind('keyup', function(){

var icon = t.textbox('getIcon',0);

if ($(this).val()){

icon.css('visibility','visible');

} else {

icon.css('visibility','hidden');

}

});

});

}

});

$(function(){

$('#tt').textbox().textbox('addClearBtn', 'icon-clear');

});

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值