如何在javascript中添加ng-click指令到dom元素

时间:2014-10-08 14:22:21

标签: angularjs angularjs-directive angularjs-ng-click

我有一个按钮,它通过jsp include包含在页面中。

<button class="btnGreyInactive" name="btn_createNew" id="createNewBtn" style="display: inline-block;" onmouseover="this.className='btnGreyActive'" onmouseout="this.className='btnGreyInactive'"> <img src="/web/images/add.png" alt="Create New" title="Create New" class="vMiddle padRight5">Create New</button>

现在如果我能够成功地将ng-click指令添加到dom元素(包含在其他jsp页面中),那么我可以通过下面的代码实现路由。

$scope.createNewBtn = function() {
$localStorage.$reset();
    $location.path("/addCarrier");
});

请告诉我如何继续这种情况。

0 个答案:

没有答案