Fire oninput event with jQuery

前端 未结 7 954
太阳男子
太阳男子 2020-12-02 22:47

I have an oninput event on a textarea to check the height and resize it. Now I need to edit the value sometimes. I do this just by editting the val() in jQuery, but that doe

7条回答
  •  情书的邮戳
    2020-12-02 23:21

    It is a bit too late, but for future reference, there is the .trigger method.

    $("#testArea").on("input", function(e) {
      $("#outputArea").text( $(e.target).val() )
    });
    
    $("#testArea").val("This is a test");
    $("#testArea").trigger("input");
    
    
    
    

提交回复
热议问题