-6

选择根据更改文本字段的值

$(document).ready(function(){
    $("#combo1 option:selected").change(function() {    
        if (this.value == "Egreso"){
            $("#monto").val("-");
        }
    })
});
4

1 回答 1

4

change 事件触发select元素本身,而不是其中的option元素。尝试这个:

$(document).ready(function(){
    $("#combo1").change(function() {   
        if ($(this).val() == 'Egreso') {
            $("#monto").val("-");
        }
    })
});
于 2013-06-28T14:07:36.417 回答