which event raised when set value of input in javascript

后端 未结 3 2021
隐瞒了意图╮
隐瞒了意图╮ 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条回答
  •  梦毁少年i
    2021-01-22 02:33

    When a value is changed via a script the change event is not fired, if you want to run a handler then you can trigger the event manually

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

提交回复
热议问题