Fire onchange event for TextBox when readonly is true

前端 未结 4 1715
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-19 03:35

I am trying to have some functionality on change of a textbox which is readonly. But when I am trying to update the textbox using javascript, the change event is not firing

4条回答
  •  抹茶落季
    2021-01-19 03:56

    I believe that for some security reason, the events are not fired. But you can achieve this by triggering the specific event on that element. E.g. $('input[id$=_txtTest]').trigger('change');

    I hope this helps someone.

提交回复
热议问题