체크 박스 옵션이 많아져서 원하는 걸 찾기 어려울 때 사용하시면 됩니다.
몇 번 언급한 적이 있는 CoffeeScript를 사용했습니다.
[index.html]
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>Checkbox Filter</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="stylesheet.css" media="screen" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
<script src="http://jashkenas.github.com/coffee-script/extras/coffee-script.js" type="text/javascript"></script>
<script src="application.coffee" type="text/coffeescript"></script>
</head>
<body>
<div id="container">
<form method="post" action="/">
<label for="input-filter">Filter:</label>
<input id="input-filter" type="text" name="filter" />
<ul>
<li>
<input id="id_1" type="checkbox" name="ids[]" value="1" />
<label for="id_1">#1 - AA</label>
</li>
<li>
<input id="id_2" type="checkbox" name="ids[]" value="2" />
<label for="id_2">#2 - BA</label>
</li>
<li>
<input id="id_3" type="checkbox" name="ids[]" value="3" />
<label for="id_3">#3 - AB</label>
</li>
<li>
<input id="id_4" type="checkbox" name="ids[]" value="4" />
<label for="id_4">#4 - BB</label>
</li>
<li>
<input id="id_5" type="checkbox" name="ids[]" value="5" />
<label for="id_5">#5 - ABC</label>
</li>
</ul>
</form>
</div>
</body>
</html>
[stylesheet.css]
body {
font-size: 12px;
background: #FFF;
color: #333;
margin: 0;
}
#container {
margin: 10px auto;
width: 600px;
padding: 10px;
}
[application,coffee]
$ ->
$('form').submit ->
false
$('input[name=filter]').live 'keyup', ->
query = $(this).val().toLowerCase()
if $(query).is(':blank')
$('form li').show()
else
$('form li').each (i, item) ->
text = $(item).find('label').text().toLowerCase()
if text.search(query) < 0
$(item).hide()
else
$(item).show()
몇 번 언급한 적이 있는 CoffeeScript를 사용했습니다.
[index.html]
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>Checkbox Filter</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="stylesheet.css" media="screen" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
<script src="http://jashkenas.github.com/coffee-script/extras/coffee-script.js" type="text/javascript"></script>
<script src="application.coffee" type="text/coffeescript"></script>
</head>
<body>
<div id="container">
<form method="post" action="/">
<label for="input-filter">Filter:</label>
<input id="input-filter" type="text" name="filter" />
<ul>
<li>
<input id="id_1" type="checkbox" name="ids[]" value="1" />
<label for="id_1">#1 - AA</label>
</li>
<li>
<input id="id_2" type="checkbox" name="ids[]" value="2" />
<label for="id_2">#2 - BA</label>
</li>
<li>
<input id="id_3" type="checkbox" name="ids[]" value="3" />
<label for="id_3">#3 - AB</label>
</li>
<li>
<input id="id_4" type="checkbox" name="ids[]" value="4" />
<label for="id_4">#4 - BB</label>
</li>
<li>
<input id="id_5" type="checkbox" name="ids[]" value="5" />
<label for="id_5">#5 - ABC</label>
</li>
</ul>
</form>
</div>
</body>
</html>
[stylesheet.css]
body {
font-size: 12px;
background: #FFF;
color: #333;
margin: 0;
}
#container {
margin: 10px auto;
width: 600px;
padding: 10px;
}
[application,coffee]
$ ->
$('form').submit ->
false
$('input[name=filter]').live 'keyup', ->
query = $(this).val().toLowerCase()
if $(query).is(':blank')
$('form li').show()
else
$('form li').each (i, item) ->
text = $(item).find('label').text().toLowerCase()
if text.search(query) < 0
$(item).hide()
else
$(item).show()
댓글 2개
14년 전
[application,coffee] 여기서 , 는 . 이게 맞는거죠?
유용하게 쓰이겠네요 감사합니다.
유용하게 쓰이겠네요 감사합니다.
14년 전
헉, 마침표가 맞습니다!
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 4730 |
제너레이션
|
13년 전 | 998 | |
| 4729 | 13년 전 | 937 | ||
| 4728 | 13년 전 | 697 | ||
| 4727 | 13년 전 | 1244 | ||
| 4726 | 13년 전 | 844 | ||
| 4725 | 13년 전 | 1680 | ||
| 4724 | 13년 전 | 1015 | ||
| 4723 | 13년 전 | 2687 | ||
| 4722 | 13년 전 | 556 | ||
| 4721 |
ECEditor
|
13년 전 | 2232 | |
| 4720 | 13년 전 | 2610 | ||
| 4719 | 13년 전 | 4371 | ||
| 4718 | 13년 전 | 944 | ||
| 4717 | 13년 전 | 1169 | ||
| 4716 | 13년 전 | 1345 | ||
| 4715 |
한번잘해보자
|
13년 전 | 1166 | |
| 4714 | 13년 전 | 1169 | ||
| 4713 | 13년 전 | 2818 | ||
| 4712 | 13년 전 | 1244 | ||
| 4711 |
김준수사랑
|
13년 전 | 1010 | |
| 4710 |
한번잘해보자
|
13년 전 | 1137 | |
| 4709 | 13년 전 | 1135 | ||
| 4708 | 13년 전 | 814 | ||
| 4707 | 13년 전 | 1699 | ||
| 4706 |
프로프리랜서
|
13년 전 | 2084 | |
| 4705 |
프로프리랜서
|
13년 전 | 1372 | |
| 4704 | 13년 전 | 965 | ||
| 4703 |
프로프리랜서
|
13년 전 | 934 | |
| 4702 | 13년 전 | 826 | ||
| 4701 | 13년 전 | 1567 | ||
| 4700 | 13년 전 | 2590 | ||
| 4699 | 13년 전 | 1302 | ||
| 4698 |
|
13년 전 | 1597 | |
| 4697 |
|
13년 전 | 1116 | |
| 4696 |
|
13년 전 | 1130 | |
| 4695 |
|
13년 전 | 1343 | |
| 4694 |
|
13년 전 | 864 | |
| 4693 |
|
13년 전 | 853 | |
| 4692 |
|
13년 전 | 857 | |
| 4691 |
|
13년 전 | 1186 | |
| 4690 |
|
13년 전 | 1270 | |
| 4689 |
|
13년 전 | 1018 | |
| 4688 |
|
13년 전 | 779 | |
| 4687 |
|
13년 전 | 1055 | |
| 4686 |
|
13년 전 | 1009 | |
| 4685 |
|
13년 전 | 940 | |
| 4684 |
|
13년 전 | 1039 | |
| 4683 |
|
13년 전 | 929 | |
| 4682 |
|
13년 전 | 1241 | |
| 4681 |
|
13년 전 | 1018 | |
| 4680 |
|
13년 전 | 1137 | |
| 4679 |
|
13년 전 | 1649 | |
| 4678 |
|
13년 전 | 578 | |
| 4677 | 13년 전 | 2910 | ||
| 4676 |
복이219
|
13년 전 | 613 | |
| 4675 | 13년 전 | 814 | ||
| 4674 | 13년 전 | 605 | ||
| 4673 | 13년 전 | 984 | ||
| 4672 | 13년 전 | 926 | ||
| 4671 | 13년 전 | 1195 | ||
| 4670 | 13년 전 | 707 | ||
| 4669 | 13년 전 | 1776 | ||
| 4668 | 13년 전 | 1417 | ||
| 4667 |
너는나의봄이다
|
13년 전 | 1017 | |
| 4666 | 13년 전 | 6692 | ||
| 4665 | 13년 전 | 612 | ||
| 4664 | 13년 전 | 994 | ||
| 4663 | 13년 전 | 840 | ||
| 4662 | 13년 전 | 963 | ||
| 4661 | 13년 전 | 1238 | ||
| 4660 | 13년 전 | 835 | ||
| 4659 | 13년 전 | 1095 | ||
| 4658 |
소나무닷컴
|
13년 전 | 684 | |
| 4657 | 13년 전 | 706 | ||
| 4656 |
|
13년 전 | 1235 | |
| 4655 | 13년 전 | 3088 | ||
| 4654 | 13년 전 | 669 | ||
| 4653 | 13년 전 | 2097 | ||
| 4652 | 13년 전 | 868 | ||
| 4651 | 13년 전 | 774 | ||
| 4650 | 13년 전 | 1655 | ||
| 4649 | 13년 전 | 1585 | ||
| 4648 | 13년 전 | 603 | ||
| 4647 | 13년 전 | 1500 | ||
| 4646 | 13년 전 | 1927 | ||
| 4645 | 13년 전 | 1326 | ||
| 4644 | 13년 전 | 586 | ||
| 4643 | 13년 전 | 2005 | ||
| 4642 | 13년 전 | 805 | ||
| 4641 |
|
13년 전 | 587 | |
| 4640 | 13년 전 | 558 | ||
| 4639 |
|
13년 전 | 1289 | |
| 4638 |
|
13년 전 | 1663 | |
| 4637 |
|
13년 전 | 1127 | |
| 4636 | 13년 전 | 617 | ||
| 4635 | 13년 전 | 751 | ||
| 4634 | 13년 전 | 1253 | ||
| 4633 | 13년 전 | 1200 | ||
| 4632 |
|
13년 전 | 534 | |
| 4631 | 13년 전 | 3338 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기