我在我的按钮上添加了data-ng-click
属性,指向copy
功能。但是,单击按钮时,该功能不会运行。
a.html
<button class="btn" data-ng-click="copy()">start</button>
a.js
$scope.copy = function() {
console.log("aaa");
};
为什么我看不到&#34; aaa&#34;在控制台?
答案 0 :(得分:0)
我认为您的按钮位于标记中,通常 ng-submit =“function()”会禁用数据-ng-click事件。