用户信息的操作

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>综合练习</title>
<style>
.addUser{
width: 100px;height: 40px;font-size: 18px;background-color: #11C1F3;
}
</style>
<script type="text/javascript" src="js/angular.js" ></script>
<script type="text/javascript" src="js/angular-route.js" ></script>
<script type="text/javascript">
var app = angular.module("myApp",["ngRoute"]);
//使用config配置路由规则
app.config(["$routeProvider",function($routeProvider){
$routeProvider
.when("/addUser",{
controller:"addUserCtrl",
templateUrl:"addUser.html"
})
.when("/updatePwd/:name",{
controller:"updatePwdCtrl",
templateUrl:"updatePwd.html"
})
.otherwise({redirectTo:"/addUser"});
}]);
app.controller("myCtrl",function($scope,$location){
$scope.ageSize = "";//绑定年龄范围
$scope.users = [
{"id":1,"name":"张三","pwd":"123","age":22,"sex":"男","state":false},
{"id":2,"name":"李四","pwd":"456","age":33,"sex":"女","state":false},
{"id":3,"name":"王五","pwd":"789","age":44,"sex":"男","state":false}
];
//定义页面跳转方法
$scope.goToUrl = function(path){
alert(path);
$location.path(path);
}

//年龄范围过滤
$scope.ageTest = function(age,ageSize){
//alert(ageSize);
//alert(age);
if(ageSize != "--请选择--"){
var ages = ageSize.split("-");
var ageMin = ages[0];
var ageMax = ages[1];
if( age<ageMin || age>ageMax ){
return false;
}else{
return true;
}
}else{
return true;
}
}

//批量删除
$scope.deleteSel = function(){
var userNames = [];
//遍历users数组,获取状态是选中的user对象的名字
for(index in $scope.users){
if($scope.users[index].state == true){
userNames.push($scope.users[index].name);
}
}

if(userNames.length>0){
if(confirm("是否删除选中项?")){
for(i in userNames){
var name = userNames[i];
for(i2 in $scope.users){
if($scope.users[i2].name == name){
$scope.users.splice(i2,1);
}
}
}
}
}else{
alert("请选择删除项");
}
}

//用来查询的字段
          /*  $scope.cxSearch;
            $scope.cx = function (ziduan) {
                console.log(ziduan);
                console.log($scope.select);
                $scope.cxSearch = ziduan;
            }*/

//清空购物车
$scope.removeAll = function(){
if(confirm("你确定要清空购物车所有商品吗?")){
$scope.users = [];
}
}
        //全选
            $scope.quan = function(){
            for(i=0;i<$scope.users.length;i++){
            if($scope.che == true){
            $scope.users[i].state =true;
            }else{
            $scope.users[i].state =false;
            }
            }
            }
           
            $scope.dan = function(){
            var count=0;
            for(i=0;i<$scope.users.length;i++){
            if($scope.users[i].state==true){
            count++;
            }
            }
           
           
            if($scope.users.length==count){
           
              $scope.che = true;
              
             }else{
               $scope.che =false;
             }
           
           
            }

           //性别筛选
           $scope.ageCC="请选择";
$scope.sexTest = function(sex,sexCC){

if(sexCC=="请选择"){
return true;
}else{
if(sexCC==sex){
return true;
}else{
return false;
}
}
}

});
//自定义年龄过滤器
app.filter("ageFilter",function(){
return function(user){
alert(user);
/*if(user.age<20 || user.age>22){
return null;
}else{
return user;
}*/
}
});

//定义添加用户控制器
app.controller("addUserCtrl",function($scope){
//alert("添加用户控制器");
$scope.name = "";
$scope.pwd = "";
$scope.pwd2 = "";
$scope.age = "";
$scope.sex = "";

$scope.sub = function(){
var newUser = {
id:$scope.users.length + 1,
name:$scope.name,
pwd:$scope.pwd,
age:$scope.age,
sex:$scope.sex
}
//添加新用户.
$scope.users.push(newUser);
}
});
//定义修改用户控制器
app.controller("updatePwdCtrl",function($scope,$routeParams){
//alert("修改控制器");
$scope.name = $routeParams.name;
$scope.oldPwd = "";
$scope.pwd1 = "";
$scope.pwd2 = "";
//alert($scope.name);
$scope.updatePwd = function(){
//alert(pwd1);
/*if($scope.pwd1 != $scope.pwd2){
alert("两次密码不一致 ");
}*/

for(index in $scope.users){
//alert($scope.users[index].name);
if($scope.users[index].name == $scope.name) {
$scope.users[index].pwd = $scope.pwd1;
}
}
}


});

     
</script>

</head>
<body ng-app="myApp" ng-controller="myCtrl">
<center>
<h3>用户信息表</h3>
<div>
<input placeholder="用户名查询" size="10"  ng-model="name" ng-click="cx('name')"/>&nbsp;
<!--<input ng-model="ageSize" placeholder="年龄查询(a-b)" size="10"/>-->
年龄:<select id="age" ng-model="ageSize" ng-init="ageSize='--请选择--'">
<option>--请选择--</option>
<option>11-20</option>
<option>21-30</option>
<option>31-40</option>
<option>41-50</option>
<option>51-60</option>
</select>&nbsp;
性别:<select ng-model="ageCC" ng-init="请选择">
<option>请选择</option>
<option>男</option>
<option>女</option>
</select>&nbsp;
<input type="button" value="全部删除"  ng-click="removeAll()"/>
<input ng-click="deleteSel()" type="button" value="批量删除" />
</div><br />
<div>
<table border="1" cellspacing="1" cellpadding="10">
<thead>
<tr>
<th><input type="checkbox" ng-model="che" ng-click="quan()"/> </th>
<th>id</th>
<th>用户名</th>
<th>密码</th>
<th>年龄</th>
<th>性别</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="user in users | filter:{name:name}" ng-if="ageTest(user.age,ageSize)" ng-show="sexTest(user.sex,ageCC)">
<td><input ng-model="user.state" type="checkbox"  ng-click="dan()"/></td>
<td>{{user.id}}</td>
<td>{{user.name }}</td>
<td>{{user.pwd}}</td>
<td>{{user.age }}</td>
<td>{{user.sex}}</td>
<td><button ng-click="goToUrl('/updatePwd/'+user.name)">修改密码</button> </td>
</tr>
</tbody>


</table>
</div><br />
<button class="addUser" ng-click="goToUrl('/addUser')">添加用户</button><br /><br />
<!-- 1.添加用户页面 -->
<script type="text/ng-template" id="addUser.html">
<form action="">
<table border="1" cellspacing="1" cellpadding="10">
<tr>
<th>用户名:</th>
<td><input ng-model="name" placeholder="请输入用户名" /></td>
</tr>
<tr>
<th>密 码:</th>
<td><input ng-model="pwd" placeholder="请输入密码" /></td>
</tr><tr>
<th>年 龄:</th>
<td><input ng-model="age" placeholder="请输入年龄" /></td>
</tr><tr>
<th>性 别:</th>
<td><input ng-model="sex" placeholder="请输入性别" /></td>
</tr>
<tr align="center">
<td colspan="2"><input type="button" ng-click="sub()" value="提交" /></td>
</tr>
</table>
</form>
</script>
<!-- 2.修改用户信息页面 -->
<script type="text/ng-template" id="updatePwd.html">
<form>
<table border="1" cellspacing="1" cellpadding="10">
<tr>
<th>用户名:</th>
<td><input disabled="disabled" ng-model="name" placeholder="请输入用户名" /></td>
</tr>
<tr>
<th>旧密码:</th>
<td><input ng-model="oldPwd" placeholder="请输入密码" /></td>
</tr><tr>
<th>新密码:</th>
<td><input ng-model="pwd1" placeholder="请输入年龄" /></td>
</tr><tr>
<th>确 认:</th>
<td><input ng-model="pwd2" placeholder="请输入性别" /></td>
</tr>
<tr align="center">
<td colspan="2"><input type="button" value="提交" ng-click="updatePwd()" /></td>
</tr>
</table>
</form>
</script>

<!-- 根据姓名查询 -->
<tbody>
        <tr ng-repeat="item in users | filter:{ 'name':search} | orderBy:(orderSign+orderColumn) ">
           
            <td>
                {{item.name}}
            </td>
          


        </tr>
       
        </tbody>

<!-- 6.指定相应内容 -->
<div ng-view>

</div>
</center>
</body>

</html>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
iava学生信息管理是一个用于管理学生信息的系统。用户可以通过该系统来存储、更新和检索学生的个人和学术信息。 在使用iava学生信息管理系统时,用户可以首先通过系统登录页面进行身份验证,并输入正确的用户名和密码。一旦成功登录,用户将能够访问其授权的学生信息。 用户可以通过系统的“添加学生”功能来录入新的学生信息。用户需要填写学生的姓名、性别、年龄、地址和联系方式等基本信息,并可以选择添加学生的学术成绩、课程表等相关内容。填写完毕后,用户可以点击“保存”按钮将学生信息存储到系统中。 一旦学生信息被添加到系统中,用户可以对学生信息进行更新。通过系统的“编辑学生”功能,用户可以选择要编辑的学生,并可修改学生的个人信息、学术成绩等内容。用户可以修改信息后点击“保存”按钮来更新学生信息。 此外,用户还可以通过系统的“搜索学生”功能来检索学生信息。用户可以根据学生的姓名、学号或其他关键字进行搜索,并获取结果列表。用户可以点击搜索结果中的学生条目,查看学生的详细信息。 在iava学生信息管理系统中,用户还可以删除学生信息。通过系统的“删除学生”功能,用户可以选择要删除的学生,并点击“确认”按钮进行删除操作。系统将从数据库中删除相应的学生记录。 总之,iava学生信息管理系统提供了一系列简便易用的用户操作,以便用户能够方便地存储、更新和检索学生信息。用户只需登录系统,并使用提供的功能菜单,即可完成相关操作

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值