我有一个包含多行的表,每个都可以选择,第一列是一个使用bootstraps popover(UI Bootstrap Angular)的信息按钮。
<span class='glyphicon glyphicon-info-sign' popover-placement='right' popover='my notes to display'></span>
当我点击该项目时,我希望它不会选择它背后的项目。
我知道这可以使用e.preventDefault和e.stopPropagation()来完成,如何使用bootsrap UI实现它?
由于
答案 0 :(得分:6)
告诉它停止传播这样的事件:
<span ng-click="$event.stopPropagation()" class='glyphicon glyphicon-info-sign' popover-placement='right' popover='my notes to display'></span>
这应该有所帮助。