我正在使用Angular Bootstrap UI,我有一个工作工具提示.
HTML:
使用Javascript:
angular.module('helloApp', ['ui.bootstrap']) .controller('helloCtrl', helloCtrl) function helloCtrl() { var vm = this; vm.clickInsideToSeeTheWorld = function() {alert(123)} }
当我打开工具提示时,ng-click
不起作用.没有警报出现.我的控制台没有收到任何错误.这是因为HTML未编译.如何正确编译工具提示html以使其工作?