1.input
a. validatebox
定義:
賦值:
$("#username").val('1212'),
取值:
$("#username").val()
b. combobox
定義:
城市:
區縣:街道:
取值:
$("#city2").combobox("getvalues")
賦值:
$('#city').combobox('setvalue', 『北京』);
c. numberbox
定義:
賦值:
$('#nn').numberbox('setvalue', 206.12);
取值:
var v = $('#nn').numberbox('getvalue');
d. datebox
定義:
賦值:
$("#sc001_certificatevalid").datebox('setvalue', '2014-9-12');
取值:
$('#nn').datebox('getvalue'),
e. numberspinner
定義:
賦值:
$('#ss').numberspinner('setvalue', 8234725);
取值:
var v = $('#ss').numberspinner('getvalue');
f. radio 單選按鈕
定義:賦值:
var str = result.username;
$("[value='" + str + "']").attr("checked", true);
取值:
$('input[name="username"]:checked').val()
g. checkbox 核取方塊
定義:
水
空氣
土壤雜訊
生物
賦值:
var str3 = result.businessscope;
if (str3 != null) ;
}
取值:
var isc = "";
$("input[name='businessscope']:checked").each(function () );
if (isc.length > 0) //如果獲取到
isc = isc.substring(0, isc.length - 1); //把最後乙個逗號去掉string isc就是值
2.textarea
定義:
賦值和取值與input標籤相同
(10)Jquery給easyui的表單元素賦值
1.input a.validatebox 定義 賦值 取值 b.combobox 定義 取值 賦值 city combobox setvalue 北京 回顯 公司位址 if str4 null c.numberbox 定義 type text class easyui numberbox maxl...
easyui給tree加個title提示
var tmprighttitle var titleindex 1 post righturl,function data tmprighttitle titleindex data i sn titleindex function tmprighttitle titleindex cnode.s...
jquery獲取easyui日期控制項的值
jquery easyui日期控制項中,在頁面裡用js拿到設定的日期值的方法jquery獲取easyui日期控制項的值 jquery easyui 日期框 有這樣的乙個日期文字框 text name mdate size 20 value id mdate class easyui datebox ...