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