这个简单的代码jquery失败了什么?

时间:2013-06-28 14:06:03

标签: jquery

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

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

1 个答案:

答案 0 :(得分:4)

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

$(document).ready(function(){
    $("#combo1").change(function() {   
        if ($(this).val() == 'Egreso') {
            $("#monto").val("-");
        }
    })
});