In jQuery, why does programmatically triggering 'click()' on a checkbox not immediately check it?

前端 未结 2 1486
情话喂你
情话喂你 2020-12-20 13:28

Update: This only applies to jQuery 1.8 and below. This was fixed in jQuery 1.9.

Here is my minimal jsfiddle example: http://jsfiddle.net/8fuEJ/. I\'m using

相关标签:
2条回答
  • 2020-12-20 14:17

    There are three types of actions going on here:

    1. Manually clicking it changes the state. That is all it does by itself; the trigger then fires because it is realizing that it has been clicked. This is a matter of browser behavior before scripting behavior.
    2. Calling the Click() event calls the javascript event first. jQuery prioritizes the function you provided, as it may very well cancel that click or perform some other action. After that is completed, javascript changes the status of the checkbox.
    3. Lastly the Change() event is mimicking the manual clicking by telling the browser to click it. That means that the item is being changed by the browser, which then in turn is calling your triggered event.

    Essentially the difference is that the Click() is a straight javascript call. It can do things the others cannot, such as cancel the change and do all sorts of other zany stuff, so it is delaying the change of state for as long as it can.

    0 讨论(0)
  • 2020-12-20 14:32

    The click event fires before the default action. It does this to allow you to prevent the default action from occurring by returning false from the handler.

    In your example, this means that you alert the old value as the default action of changing the checkbox state has not yet occurred.

    0 讨论(0)
提交回复
热议问题