我是AngularJS的新手.从W3school学到的.现在开始了解模糊功能和ui-event其他网站的工作原理.所以我得到的代码不起作用请让我知道原因或更好的方法来调用模糊功能.
HTML
<div ng-app="" ng-controller="testing" >
<input ui-event="{ blur : 'blurCallback()' }">
</div>
Run Code Online (Sandbox Code Playgroud)
脚本标记
function testing($scope){
$scope.blurCallback = function() {
alert('Goodbye');
};
}
Run Code Online (Sandbox Code Playgroud) angularjs ×1