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
你弄懂了吗?哈哈