回答編集履歴

2

ちょうせい

2021/05/13 10:05

投稿

yambejp
yambejp

スコア116849

test CHANGED
@@ -46,8 +46,6 @@
46
46
 
47
47
  }).get();
48
48
 
49
- console.log(a.join(String.fromCharCode(13)));
50
-
51
49
  $(this).closest('.filter_image').toggle(new RegExp(text).test(a.join(String.fromCharCode(10))));
52
50
 
53
51
  });

1

ちょうせい

2021/05/13 10:05

投稿

yambejp
yambejp

スコア116849

test CHANGED
@@ -1,3 +1,5 @@
1
+ # 完全一致
2
+
1
3
  ```javascript
2
4
 
3
5
  $(function(){
@@ -23,3 +25,35 @@
23
25
  });
24
26
 
25
27
  ```
28
+
29
+
30
+
31
+ # 部分一致
32
+
33
+ ```javascript
34
+
35
+ $(function(){
36
+
37
+ $(".input_text").on("input",function(event){
38
+
39
+ let text=$(this).val();
40
+
41
+ $('.keyword_list').each(function(){
42
+
43
+ var a=$(this).find('p').map(function(){
44
+
45
+ return $(this).text();
46
+
47
+ }).get();
48
+
49
+ console.log(a.join(String.fromCharCode(13)));
50
+
51
+ $(this).closest('.filter_image').toggle(new RegExp(text).test(a.join(String.fromCharCode(10))));
52
+
53
+ });
54
+
55
+ });
56
+
57
+ });
58
+
59
+ ```