美文网首页
select change事件只能触发一次的问题

select change事件只能触发一次的问题

作者: Scoor | 来源:发表于2019-06-01 11:18 被阅读0次
    $("select").bind('change',function(){
        $(this).find("option[value='1']").attr("selected","selected");
    }
    

    该方法再调用一次后无法再次触发,原因是select value没有发生改变

    $("select").bind('change',function(){
        $(this).find("option[value='1']").attr("selected","selected");
        $(this).val("1");
    }
    

    可以解决

    相关文章

      网友评论

          本文标题:select change事件只能触发一次的问题

          本文链接:https://www.haomeiwen.com/subject/azmotctx.html