jQuery textbox.val('xxxx') not causing change to fire?

后端 未结 3 1003
一整个雨季
一整个雨季 2020-12-03 00:26

I have the following jQuery code in place on my page:

var isChanged = false;
$(document).ready(function()
{
    $(\'.change\').change(function() {
        is         


        
相关标签:
3条回答
  • 2020-12-03 01:17

    $('.change').change() will fire the event. Just changing the attributes doesn't fire the event.

    0 讨论(0)
  • 2020-12-03 01:19

    According to DOM Level 2 Event Specification:

    The change event occurs when a control loses the input focus and its value has been modified since gaining focus.

    That means that change event is designed to fire on change by user interaction. Programmatic changes doesn't cause this event to be fired.

    0 讨论(0)
  • 2020-12-03 01:26

    That's the way it works. If you need the change of value to trigger the "change" event, you can explicitly do so by:

    $('input#whatever').val('hi').change();
    
    0 讨论(0)
提交回复
热议问题