在angularjs 1.4中防止页面刷新

时间:2016-05-08 04:29:27

标签: javascript angularjs

我想在angularjs 1.4应用程序中使用browser / f5按钮阻止页面刷新。我已经通过了其他SO答案。我使用下面的代码段。但是,它不起作用。有人能说出它的错误吗?

app.run(function($window){
    var windowElement = angular.element($window);
    windowElement.on('beforeunload', function (event) {
    // do whatever you want in here before the page unloads.        
    event.returnValue = "Refresh is disabled";
    // the following line of code will prevent reload or navigating away.
    event.preventDefault();
});
})

其中app是角度模块

0 个答案:

没有答案