which event raised when set value of input in javascript

后端 未结 3 2057
隐瞒了意图╮
隐瞒了意图╮ 2021-01-22 01:49

when set value of input in javascript which event raised? i tried these event :(propertychange change keypress paste focus textInput input keyup keydown change) for example:

3条回答
  •  青春惊慌失措
    2021-01-22 02:32

    When you set the value programmatically no event will be raised. You can raise it yourself though:

    $('input')[0].value = "sd";
    $('input').first().trigger("change");
    

    Or just using jQuery:

    $('input').first().val("sd").trigger("change");
    

提交回复
热议问题