angularjs ngclick处理两个函数

时间:2016-08-25 02:38:01

标签: angularjs ionic-framework

帮助使角度单击处理两个功能。我试过但它不起作用。 theshowtakeorder显示并隐藏div,并且takeorderfunction必须从控制器执行一个函数。

<button ng-click="takeorderfunction() showtakeorder = !showtakeorder">TAKE ORDER</button>

1 个答案:

答案 0 :(得分:1)

尝试使用分号:

<button ng-click="takeorderfunction(); showtakeorder = !showtakeorder">TAKE ORDER</button>

或者更好的是将你的逻辑放在另一个函数中:

<button ng-click="clickFunction()">TAKE ORDER</button>

控制器:

$scope.clickFunction = function(){
    takeorderfunction();
    showtakeorder = !showtakeorder;
}