且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

angularjs $location 服务

更新时间:2022-09-18 14:22:44

<!DOCTYPE HTML>
<html ng-app="myApp">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<script src="angular.min.js"></script>
<script>
//对网址信息进行2次的封装。

var m1 = angular.module('myApp',[]);
m1.controller('Aaa',['$scope','$location',function($scope,$location){
    var a = $location.absUrl();//网址的绝对地址(加的参数进行了编码)
    $location.path('aaa/bbb/ccc').replace();
    $location.hash('hello');
    $location.search({'age':'20'});
    var a = $location.protocol();//地址的协议
    console.log(a);
}]);

</script>
</head>
<body>
<div ng-controller="Aaa">
</div>
</body>
</html>
angularjs $location 服务
angularjs $location 服务
<!DOCTYPE HTML>
<html ng-app="myApp">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
#parent div{ width:300px; height:500px; border:1px #000 solid; margin:20px;}
#parent ul{ width:200px; position:fixed; top:0; right:0;}
</style>
<script src="angular.min.js"></script>
<script>


var m1 = angular.module('myApp',[]);
m1.controller('Aaa',['$scope','$location','$anchorScroll',function($scope,$location,$anchorScroll){
    $scope.change = function(id){
        //console.log(id);
        $location.hash(id);
        $anchorScroll();//锚点跳转
    };
}]);

</script>
</head>

<body>
<div id="parent" ng-controller="Aaa">
    <ul>
        <li ng-repeat="id in [1,2,3,4,5]" ng-click="change('div'+id)">{{id}}aaaaaaaaaa</li>
    </ul>
    <div ng-repeat="id in [1,2,3,4,5]" ng-attr-id="div{{id}}">{{id}}</div>
</div>
</body>
</html>
angularjs $location 服务

 


本文转自农夫山泉别墅博客园博客,原文链接:http://www.cnblogs.com/yaowen/p/5742154.html,如需转载请自行联系原作者