$timeout(fn, [delay], [invokeApply]);
$timeout.cancel([promise])
var timeoutApp = angular.module('timeoutApp',[]);
timeoutApp.run(function($timeout){
var a = $timeout(function(){
console.log('执行$timeout回调');
return 'angular'
},1000);
a.then(function(data){
console.log(data)
},function(data){
console.log(data)
});
//$timeout.cancel(a);
})
<!DOCTYPE html>
<html ng-app="timeoutApp">
<head>
<title>$timeout服务</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../bootstrap.css" rel="external nofollow" />
<script src="../angular.js"></script>
<script src="script.js"></script>
<style type="text/css">
* {
font-family:'MICROSOFT YAHEI'
}
</style>
</head>
<body >
<div ng-controller="myCtrl">
<div class="dropdown" dropdown >
<button class="btn btn-default dropdown-toggle" type="button" ng-mouseenter = "showMenu()" ng-mouseleave = "hideMenu()">
Dropdown
<span class="caret"></span>
</button>
<ul class="dropdown-menu" ng-show="ifShowMenu" ng-mouseenter = "showMenu()" ng-mouseleave = "hideMenu()">
<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Action</a></li>
<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Another action</a></li>
<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Something else here</a></li>
<li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Separated link</a></li>
</ul>
</div>
</div>
</body>
</html>
var timeoutApp = angular.module('timeoutApp',[]);
timeoutApp.controller('myCtrl',function($scope){
$scope.ifShowMenu = false;
});
timeoutApp.directive('dropdown',function($timeout){
return {
restrict:"EA",
link:function(scope,iele,iattr){
scope.showMenu = function(){
$timeout.cancel(scope.t2);
scope.t1 = $timeout(function(){
scope.ifShowMenu = true
},500)
};
scope.hideMenu = function(){
$timeout.cancel(scope.t1);
scope.t2 = $timeout(function(){
scope.ifShowMenu = false
},500)
};
}
}
})
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有