选择根据更改文本字段的值
$(document).ready(function(){
$("#combo1 option:selected").change(function() {
if (this.value == "Egreso"){
$("#monto").val("-");
}
})
});
答案 0 :(得分:4)
更改事件将触发select
元素本身,而不是其中的option
元素。试试这个:
$(document).ready(function(){
$("#combo1").change(function() {
if ($(this).val() == 'Egreso') {
$("#monto").val("-");
}
})
});