easyUI文本框textbox笔记

Posted 日月心诚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyUI文本框textbox笔记相关的知识,希望对你有一定的参考价值。

知识点:

1.图标位置 Icon Align属性,有left和right两个;

2.textbox的setvalue方法,getvalue方法。

 

<div style="margin:10px 0 20px 0">
<span>Select Icon Align: </span>
<select onchange="$(\'#tt\').textbox({iconAlign:this.value})">
      <option value="right">Right</option>
      <option value="left">Left</option>
</select>
</div>
<input id="tt" class="easyui-textbox" style="width:400px" data-options="
     prompt: \'Input something here!\',
     iconWidth: 22,
     icons: [{
         iconCls:\'icon-add\',
         handler: function(e){
         $(e.data.target).textbox(\'setValue\', \'Something added!\');
          }
    },

   {
         iconCls:\'icon-remove\',
         handler: function(e){
         $(e.data.target).textbox(\'clear\');
        }
   },

   {
      iconCls:\'icon-search\',
      handler: function(e){
      var v = $(e.data.target).textbox(\'getValue\');
      alert(\'The inputed value is \' + (v ? v : \'empty\'));
       }
    }]
">

以上是关于easyUI文本框textbox笔记的主要内容,如果未能解决你的问题,请参考以下文章

easyui 文本框添加键盘事件

easyui 文本框添加键盘事件

easyui-textbox 文本框里按回车键,怎么样把事件绑定到按钮上

使用 DataTable 中的文本填充 TextBox - 组合框

easyui动态添加元素属性

C# windows应用程序中,如何从文本框TextBox中提取数字?