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");

时间: 2024-10-16 01:51:27

easyUI设置textbox的值的相关文章

easyui validatebox textbox 取值和赋值

easyui-textbox <input id="addSnumber" style="width: 200px; height: 30px;" class="easyui-textbox" type="text" name="snumber" data-options="required:true, missingMessage:'请输入学号'" /> 赋值的方式: 1

C#中设置TextBox控件中仅可以输入数字且设置上限

首先设置只可以输入数字: 首先设置TextBox控件的KeyPress事件:当用户按下的键盘的键不在数字位的话,就禁止输入 1 private void textBox1_KeyPress(object sender, KeyPressEventArgs e) 2 { 3 if (e.KeyChar != 8 && !Char.IsDigit(e.KeyChar))//如果不是输入数字就不让输入 4 { 5 e.Handled = true; 6 } 7 } 设置上限: 设置TextBox

Cookie的设置与取值

cookie是浏览器中专门存放"小块数据"的一快地方. 设置,和读取cookie,可以在服务端设置和读取,也可以在客户端设置和读取 WebForm1.aspx页面 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication3.WebForm1" %> &l

C#设置textBox只能输入数字(正数,负数,小数)简单实现

/* *设置textBox只能输入数字(正数,负数,小数) */ public static bool NumberDotTextbox_KeyPress(object sender, KeyPressEventArgs e) { //允许输入数字.小数点.删除键和负号 if ((e.KeyChar < 48 || e.KeyChar > 57) && e.KeyChar != 8 && e.KeyChar != (char)('.') && e

如何设置data属性,如何设置data的值

如何设置data的类型,以及设置data的值 步骤: 首先声明一个参数,参数定义获取html标签名div,如下: var Div = document.getElementsByTagName('div')[0]; 接下来,我们定义一个data类型data-link;然后在js内通过setAttribute设置属性和值. Div.setAttribute('data-link','http://www.cnblogs.com/hao5599/'); // <div id="my_test&

jquery设置href属性值

jquery设置href属性值:有时候往往要动态设置链接的href属性值,下面就简单介绍一下.方法十分的简单,直接上代码了: $('#link').attr('href','http://www.softwhy.com'); 更多相关内容可以参阅jQuery的attr()方法一章节 原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=8124 更多内容可以参阅:http://www.softwhy.com/jquery/

对Textbox的值转换为带千位符和小数的Decimal字符串

以下Function可以用于textbox的KeyUp事件: var numberChars = "1234567890"; function isDecimal(item) { var obj = $(item); if (obj.length > 0) { if ($(obj).val() != null && typeof ($(obj).val()) != "undefined") { var str = $(obj).val().to

WPF 设置TextBox为空时,背景为文字提示。

<TextBox FontSize="17" Height="26" Margin="230,150,189,0" Name="txt_Account" VerticalAlignment="Top" Foreground="Indigo" TabIndex="0" BorderThickness="1"> <TextBox.Re

jquery easyui校验select下拉列表值是否为空的问题

属性名 类型 描述 默认值 required 布尔 定义文本域是否为必填项 false validType 字符串 定义字段的验证类型,比如email, url, etc. null missingMessage 字符串 当文本框为空时提示的文本信息 This field is required. invalidMessage 字符串 当文本框内容不合法时提示的文本信息 null required只表示文本框中是否有内容,easy ui的select框渲染完后 会自动添加一个文本框用于输入,如下