easyui textbox setValue以及setText的使用技巧

1、先赋值Value,后赋值Text

$('#Name').textbox('setValue', "11");
$('#Name').textbox('setText', "22");

getValue=11,getText=22

 

2、只赋值Value

$('#Name').textbox('setValue', "11");
getValue=11,getText=11

 

3、只赋值Text

$('#Name').textbox('setText', "22");
getValue=“”,getText=22

 

你弄懂了吗?哈哈

转载于:https://www.cnblogs.com/hualiuliu/p/11453272.html

你可能感兴趣的:(easyui textbox setValue以及setText的使用技巧)