在父div中,也可以在小孩div中点击

前端之家收集整理的这篇文章主要介绍了在父div中,也可以在小孩div中点击前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码
<table class="table">
            <tr>
                <th>Name___</th>
            </tr>
            <tr ng-repeat="app in apps"
                ng-click="go('/editApp/' + plugin.name);">

                <td>
                    <span>{{app.name}}</span>
                </td>
                <td style="width: 100px;">
                    <i class="glyphicon glyphicon-pencil" 
                              ng-click="openPopup(app)"></i>
                </td>
            </tr>
        </table>

当我点击OpenPopup,还有go()方法触发,我该怎么做,如果我点击弹出窗口,弹出窗口会触发?

解决方法

由于您的< td>嵌套在< tr>中,然后单击首先触发openPopup()

然后点火go().您可以使用$event.stopPropagation()来停止事件传播到< tr>.
尝试

<table class="table">
        <tr>
            <th>Name___</th>
        </tr>
        <tr ng-repeat="app in apps"
            ng-click="go('/editApp/' + plugin.name);">

            <td>
                <span>{{app.name}}</span>
            </td>
            <td style="width: 100px;">
                <i class="glyphicon glyphicon-pencil" 
                          ng-click="openPopup(app);$event.stopPropagation()"></i>
            </td>
        </tr>
    </table>
原文链接:https://www.f2er.com/css/214195.html

猜你在找的CSS相关文章