最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - AngularJS $window.confirm not working in Chrome - Stack Overflow

programmeradmin2浏览0评论
angular.module('myApp')
  .controller('pancakeController', ['$scope', '$window', function($scope, $window) {

    $scope.panCakes = [];

    $scope.removePancake = function(index) {

      if($window.confirm('are you sure?')) {
        $scope.panCakes.splice(index, 1);
      } else {
        $scope.panCakes.splice(index, 1);
      }
    };

}]);

myApp is already defined in another file. I'm using angular.module('myApp') to grab a reference to it.

Trying to use window.confirm() to confirm the user before deleting a panCake but the confrim box does not popup in Chrome 37.0.2062.94 but does work in Chrome Canary. I'm using the AngularJS $window object, but using regular window.confirm does not work either. Is there something that I'm missing in my code or is just a bug in that particular version of Chrome?

angular.module('myApp')
  .controller('pancakeController', ['$scope', '$window', function($scope, $window) {

    $scope.panCakes = [];

    $scope.removePancake = function(index) {

      if($window.confirm('are you sure?')) {
        $scope.panCakes.splice(index, 1);
      } else {
        $scope.panCakes.splice(index, 1);
      }
    };

}]);

myApp is already defined in another file. I'm using angular.module('myApp') to grab a reference to it.

Trying to use window.confirm() to confirm the user before deleting a panCake but the confrim box does not popup in Chrome 37.0.2062.94 but does work in Chrome Canary. I'm using the AngularJS $window object, but using regular window.confirm does not work either. Is there something that I'm missing in my code or is just a bug in that particular version of Chrome?

Share Improve this question edited Sep 10, 2014 at 20:02 GN. asked Sep 10, 2014 at 18:20 GN.GN. 9,91914 gold badges72 silver badges141 bronze badges 2
  • 2 What about omitting $window? Just confirm("are you sure?") – Collin Henderson Commented Sep 10, 2014 at 18:39
  • @CollinHenderson the whole point of use $window, and in general any other injected dependency, is that your controller is not bound to any function. With $window injected you can create test that validate your controller logic, without it you can't. – le0diaz Commented Sep 28, 2015 at 16:16
Add a ment  | 

2 Answers 2

Reset to default 11

The most probable cause is that you have at some point checked the little checkbox saying that you don't want to see any more alerts/confirms/prompts from this page.

(Among other solutions, closing the tab and reopening the page in a new tab should restore alerts/confirms/prompts.)

I am working on the same version of chrome as you are and the above code was not working in the fiddle as you had syntax error in the definition of the angular.module

It should be

angular.module('myApp',[])

Instead of

angular.module('myApp')

Working Fiddle

发布评论

评论列表(0)

  1. 暂无评论