本文主要介绍了Angularjs添加排序查询功能的实例代码,需要的朋友可以参考下,希望能帮助到大家。
废话不多说了,直接给大家贴代码了,具体代码如下所示:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="angular-1.3.0.js"></script> <script type="text/javascript" src="jquery.1.12.4.js"></script> <script> var app=angular.module("myapp",[]); app.controller("myCtrl",function($scope){ $scope.h=false;//显示和隐藏添加列表 $scope.persons=[];//存放添加的内容 $scope.xz=function(){//新增球员的点击事件点击列表出现 $scope.h=true; } $scope.tj = function(){ for(var i=0;i<$scope.persons.length;i++){//遍历列表的所有数据 if($scope.name==$scope.persons[i].name) {//对比数据没有重复的姓名出现 alert("您记录的内容已存在"); return; } } //判断不能为空 if($scope.name!=""&&$scope.name!=null){ if($scope.wz!=""&&$scope.wz!=null){ if($scope.hao!=""&&$scope.hao!=null){ if($scope.number!=""&&$scope.number!=null){ $scope.persons.push({//添加 name:$scope.name, wz:$scope.wz, hao:$scope.hao, number:$scope.number}); $scope.name=""; $scope.wz=""; $scope.hao=""; $scope.number=""; $scope.h=false;//添加成功添加表格关闭 }else{ alert("票數不能為空"); } }else{ alert("球号不能为空"); } }else{ alert("位置不能为空"); } }else{ alert("姓名不能为空"); } } }); </script> <!--//css样式--> <style> .input{ width: 300px; height: 30px; } .select{ width: 300px; height: 35px; } .button{ background-color: deepskyblue; width: 100px; height: 60px; border-radius: 5%; margin-top: 30px; } .table{ margin-top: 30px; } .table tr:nth-child(even){ background-color: #eeeeee; } .table2{ position: absolute; left: 300px; top: 650px; } .q{ text-align: center; } </style> </head> <body ng-app="myapp" ng-controller="myCtrl"> <p> 查询<br> <input type="text" class="input" ng-model="names"> </p> <!--//排序--> <p style="position: absolute;top: 10px;left: 500px"> 排序<br> <select class="select" ng-model="b"> <option value="">票数正序</option> <option value="-">票数倒序</option> </select> </p> <!--新增球员按钮--> <button class="button" ng-click="xz()">新增球员</button> <table border="1" width="60%" cellspacing="0" cellpadding="10" class="table"> <tr style="background-color: #999"> <th>姓名</th> <th>位置</th> <th>球号</th> <th>票数</th> </tr> <!--展示界面--> <tr ng-repeat="person in persons | filter:{'name':names} | orderBy:b+'number'"> <td class="q">{{person.name}}</td> <td class="q">{{person.wz}}</td> <td class="q">{{person.hao}}</td> <td class="q">{{person.number}}</td> </tr> </table> <!--添加的表单--> <table border="1" cellspacing="0" cellpadding="10" class="table2" ng-show="h"> <tr> <td>姓名</td> <td><input type="text" placeholder="请输入姓名" ng-model="name"></td> </tr> <tr> <td>位置</td> <td><input type="text" placeholder="请输入位置" ng-model="wz"></td> </tr> <tr> <td>球号</td> <td><input type="text" placeholder="请输入球号" ng-model="hao"></td> </tr> <tr> <td>票数</td> <td><input type="text" placeholder="请输入票数" ng-model="number"></td> </tr> <tr> <td colspan="2" align="center"><input type="button" value="提交" ng-click="tj()"></td> </tr> </table> </body> </html>
相关推荐:
以上是Angularjs添加排序查询功能代码分享的详细内容。更多信息请关注PHP中文网其他相关文章!

是的,JavaScript的引擎核心是用C语言编写的。1)C语言提供了高效性能和底层控制,适合JavaScript引擎的开发。2)以V8引擎为例,其核心用C 编写,结合了C的效率和面向对象特性。3)JavaScript引擎的工作原理包括解析、编译和执行,C语言在这些过程中发挥关键作用。

JavaScript是现代网站的核心,因为它增强了网页的交互性和动态性。1)它允许在不刷新页面的情况下改变内容,2)通过DOMAPI操作网页,3)支持复杂的交互效果如动画和拖放,4)优化性能和最佳实践提高用户体验。

C 和JavaScript通过WebAssembly实现互操作性。1)C 代码编译成WebAssembly模块,引入到JavaScript环境中,增强计算能力。2)在游戏开发中,C 处理物理引擎和图形渲染,JavaScript负责游戏逻辑和用户界面。

JavaScript在网站、移动应用、桌面应用和服务器端编程中均有广泛应用。1)在网站开发中,JavaScript与HTML、CSS一起操作DOM,实现动态效果,并支持如jQuery、React等框架。2)通过ReactNative和Ionic,JavaScript用于开发跨平台移动应用。3)Electron框架使JavaScript能构建桌面应用。4)Node.js让JavaScript在服务器端运行,支持高并发请求。

Python更适合数据科学和自动化,JavaScript更适合前端和全栈开发。1.Python在数据科学和机器学习中表现出色,使用NumPy、Pandas等库进行数据处理和建模。2.Python在自动化和脚本编写方面简洁高效。3.JavaScript在前端开发中不可或缺,用于构建动态网页和单页面应用。4.JavaScript通过Node.js在后端开发中发挥作用,支持全栈开发。

C和C 在JavaScript引擎中扮演了至关重要的角色,主要用于实现解释器和JIT编译器。 1)C 用于解析JavaScript源码并生成抽象语法树。 2)C 负责生成和执行字节码。 3)C 实现JIT编译器,在运行时优化和编译热点代码,显着提高JavaScript的执行效率。

JavaScript在现实世界中的应用包括前端和后端开发。1)通过构建TODO列表应用展示前端应用,涉及DOM操作和事件处理。2)通过Node.js和Express构建RESTfulAPI展示后端应用。

JavaScript在Web开发中的主要用途包括客户端交互、表单验证和异步通信。1)通过DOM操作实现动态内容更新和用户交互;2)在用户提交数据前进行客户端验证,提高用户体验;3)通过AJAX技术实现与服务器的无刷新通信。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

SublimeText3 Linux新版
SublimeText3 Linux最新版

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

Atom编辑器mac版下载
最流行的的开源编辑器

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

禅工作室 13.0.1
功能强大的PHP集成开发环境