easyUI设置textbox的值
Posted 海乐学习-专业呼叫中心解决方案
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyUI设置textbox的值相关的知识,希望对你有一定的参考价值。
我们知道<input type="text" class="easyui-validatebox" id="txtrName" name="txtrName" value="" />设置值的时候是直接使用$("#txtrName").val("xxx");
但是 如果class="easyui-textbox"同样使用这种设置方式却一直设置不了,后来去查找了官网英文站点才知道,,text-box设置值的方式是使用setValue的内置方法来实现的,具体如下:
$("#txtrName").textbox("setValue", "xxx");
最后翻看了下几个其他选项的【combox、numberbox、datebox、datetimebox】,都是使用setValue方法,只有validatebox使用正常的jq方式获取input框里头的值
$("#txtrName").val("xxx");
class="easyui-textbox" : $("#txtrName").textbox("setValue", "xxx");
class="easyui-combox" : $("#txtrName").combox("setValue", "xxx");
class="easyui-numberbox" :$("#txtrName").numberbox("setValue", "xxx");
class="easyui-datebox" :$("#txtrName").datebox("setValue", "xxx");
class="easyui-datetimebox" :$("#txtrName").datetimebox("setValue", "xxx");
以上是关于easyUI设置textbox的值的主要内容,如果未能解决你的问题,请参考以下文章
easyui textbox setvalue 和 settext前后之别