angular.js之路由实现

本文介绍了一个使用Angular框架实现页面路由导航的例子。通过定义不同的路由规则和视图展示区域,可以实现在单页面应用中切换不同内容的效果。示例中包含了基本的HTML结构、样式设置及JavaScript脚本初始化。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>route</title>
</head>
<style type="text/css">
div {
margin: 0;
padding: 0;
}
.box {
width: 500px;
height: 600px;
border: 1px solid #aaaaaa;
}

.box_top {
width: 500px;
height: 100px;
background-color: #cccccc;
}

.box_top span {
line-height: 100px;
margin: 0 11%;
cursor: pointer;
}
</style>
<body ng-app="routedemo">
<div class="box">
<div class="box_top">
<span class="fir">第一页</span>
<span class="sec">第二页</span>
<span class="the">第三页</span>
</div>
<div ng-view>
</div>
</div>
</body>
<script src="js/jquery-1.11.3.js"></script>
<script src="js/angular.js"></script>
<script src="js/angular-route.js"></script>
<script>
$(".fir").click(function(){
window.location="#fir";
});
$(".sec").click(function(){
window.location="#sec";
});
$(".the").click(function(){
window.location="#the";
});
var routeapp = angular.module("routedemo",['ngRoute']);
routeapp.config(function($routeProvider){
$routeProvider
.when('/',{
templateUrl:'111.html'
})


.when('/fir',{
templateUrl:'111.html'
})
.when('/sec',{
templateUrl:'ser.html'
})
.when('/the',{
templateUrl:'thr.html'
});
});
</script>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值