选择根据更改文本字段的值
$(document).ready(function(){
$("#combo1 option:selected").change(function() {
if (this.value == "Egreso"){
$("#monto").val("-");
}
})
});
选择根据更改文本字段的值
$(document).ready(function(){
$("#combo1 option:selected").change(function() {
if (this.value == "Egreso"){
$("#monto").val("-");
}
})
});