我尝试将选择应用于表格中的广播,但未选择点击后。
表格中的代码:
<td> <input type="radio" name="radioSelected" data-bind = "click:$root.selectObjectRadio"></td>
$scope.selectObjectRadio= (obj) => {
}
但点击未离开。
答案 0 :(得分:0)
By default, Knockout will prevent the click
event from taking any default action.
但是,如果你做想要让默认点击操作继续,只需 从
true
处理函数返回click
。
我想知道你为什么会对它进行点击绑定。