Bootstrap+AngularJS 간단 한 데이터 필터 문자 찾기 기능 구현
find.html
<!DOCTYPE html>
<html ng-app="find">
<head>
<title> </title>
<meta charset="utf-8"/>
<script src="../Script/angular.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="../bootstrap-3.0.0/css/bootstrap.css" rel="external nofollow" >
<style type="text/css">
body{
font-size: 12px;
}
ul{
list-style-type: none;
width: 408px;
margin:0px;
padding: 0px;
}
ul li {
float: left;
padding: 5px 0px;
}
ul .bold {
font-weight: bold;
cursor: pointer;
}
ul li span {
width: 70px;
float: left;
padding: 0px 10px;
}
ul .focus {
background-color: #cccccc;
}
</style>
<script type="text/javascript">
var find = angular.module('find', []);
find.controller('find_name', ['$scope', function ($scope) {
$scope.bold = "bold";
$scope.key = '';
$scope.data = [
{ name: " ", sex: " ", age: 24, score: 95 },
{ name: " ", sex: " ", age: 27, score: 87 },
{ name: " ", sex: " ", age: 28, score: 86 },
{ name: " ", sex: " ", age: 23, score: 97 }
];
}])
</script>
</head>
<body>
<div ng-controller="find_name" align="center">
<div class="panel panel-primary" align="center" style="height: 300px">
<div class="panel-heading" align="center">
<div class="panel-title" style="font-size: 22px"> </div>
</div>
<div>
<input id="txtkey" type="text" ng-model="key"
style="margin-top: 10px; height: 30px;width: 200px;" placeholder=" " />
</div>
<ul>
<li ng-class="{{bold}}" style="font-size: 16px; margin-top: 5px;">
<span> </span>
<span> </span>
<span> </span>
<span> </span>
<span> </span>
</li>
<li ng-repeat=" stu in data | filter : {name:key}" style="font-size: 16px">
<span>{{$index+1}}</span>
<span>{{stu.name}}</span>
<span>{{stu.sex}}</span>
<span>{{stu.age}}</span>
<span>{{stu.score}}</span>
</li>
</ul>
</div>
</div>
</body>
</html>
캡 처:위 에서 말 한 것 은 소 편 이 소개 한 Bootstrap+AngularJS 가 간단 한 데이터 필터 문 자 를 찾 는 데 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.소 편 은 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
부트스트랩 5 스티커Sticky는 페이지의 특정 영역에서 요소를 잠글 수 있도록 하는 구성 요소입니다. 수동 설치(zip 패키지) 부트스트랩 이미지 구성 요소를 활용하고 프로젝트에서 사용하려면 먼저 을 설치해야 합니다. MDB CLI ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.