回答編集履歴

2

kousin

2021/01/28 01:30

投稿

yambejp
yambejp

スコア116661

test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  $('.target li').hide().filter(function(){
10
10
 
11
- return search__text!=="" && new RegExp(search__text).test($(this).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

2021/01/28 01:30

投稿

yambejp
yambejp

スコア116661

test CHANGED
@@ -17,3 +17,5 @@
17
17
  });
18
18
 
19
19
  ```
20
+
21
+ 更新