knockout js radio button click event reset selection

后端 未结 3 684
陌清茗
陌清茗 2021-02-13 02:29

I have bind \"checked\" and \"click\" event on a radio button list. But whenever a radio button is clicked, the selection does not stay. I must be doing something really wrong.

3条回答
  •  时光说笑
    2021-02-13 03:14

    From the click event documentation:

    By default, Knockout will prevent the click event from taking any default action.
    ...
    However, if you do want to let the default click action proceed, just return truefrom your click handler function.

    So your radio button is reset because of your click handler and to fix it you just need to return true at the end:

    click: function(){
       alert('Hi');
       return true;
    }
    

    Demo JSFiddle.

提交回复
热议问题