Why does jQuery .change() not fire on radio buttons deselected as a result of a namesake being selected?

后端 未结 3 504
执念已碎
执念已碎 2021-01-18 04:57

If I have several radio buttons of the same name, only one can be selected at any one time. When one becomes selected, any namesakes lose their selection. I\'m intrigued as

3条回答
  •  借酒劲吻你
    2021-01-18 05:36

    There is only 1 change event... you changed from "old selection" to "new selection".

    Keep in mind that although you have multiple "elements" they are all part of the same form element (as defined by the name attribute).

提交回复
热议问题