我有这个示例html文件.我在这里使用角度吐司通知.我面临的问题是Toast消息总是出现在右上角位置.
script.js文件包含
angular.module('main',['ngAnimate','toaster']).controller('myController',function($scope,toaster,$window) { $scope.pop = function(){ toaster.pop('success',"title",'message'); }; $scope.clear = function(){ toaster.clear(); }; });
请找到plunker链接http://plnkr.co/edit/pzuW5OVkoxLF7zl0mGaC?p=preview
提前致谢
在你想要的选项中:position-class,而不是positionClass.
原文链接:https://www.f2er.com/angularjs/140869.html