回答編集履歴
2
kousin
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
$('.target li').hide().filter(function(){
|
10
10
|
|
11
|
-
return search__text!=="" &&
|
11
|
+
return search__text!=="" && $(this).text().match(search__text));
|
12
12
|
|
13
13
|
}).show();
|
14
14
|
|
@@ -17,5 +17,3 @@
|
|
17
17
|
});
|
18
18
|
|
19
19
|
```
|
20
|
-
|
21
|
-
更新
|
1
chous
test
CHANGED
@@ -17,3 +17,5 @@
|
|
17
17
|
});
|
18
18
|
|
19
19
|
```
|
20
|
+
|
21
|
+
更新
|