AngularJS单击表格上的一个单元格,该单元格将指向另一个网页

时间:2015-06-30 15:39:50

标签: html angularjs html5 button angularjs-ng-click

我有一个角度表,它表示来自服务器的实时数据。如果我点击一行(或行中的任何单元格),我需要将页面重定向到另一个html页面。我不知道该怎么做。谁能举个例子呢?

1 个答案:

答案 0 :(得分:0)

    <table border="1" class="table">

        <tbody>
            <tr>
                <th ng-repeat="(key,value) in payment"> {{key}} </th>
            </tr>
            <tr>

                <td ng-repeat="(key,value) in payment"> 
                    <button> 
                        {{value}} 
                    </button> 
                </td>

            </tr>
        </tbody>

我没有在.js文件中创建任何函数。上面的代码只在我的值上添加了按钮,但没有做任何其他事情。我尝试了几种方法,无法解决它。为实现此目的,我需要做什么:点击值,这将带您到另一个网站。它看起来很简单..