質問編集履歴

2

誤字

2020/06/03 02:44

投稿

todayyy
todayyy

スコア31

test CHANGED
File without changes
test CHANGED
@@ -26,7 +26,7 @@
26
26
 
27
27
  <div id="search">
28
28
 
29
- <ons-search-input placeholder="ons-search-input" type="search" id="form1">
29
+ <ons-search-input placeholder="ons-search-input" id="form1">
30
30
 
31
31
  <input type="search" class="search-input" placeholder="ons-search-input" id="text1">
32
32
 

1

文字の修正

2020/06/03 02:44

投稿

todayyy
todayyy

スコア31

test CHANGED
File without changes
test CHANGED
@@ -26,9 +26,9 @@
26
26
 
27
27
  <div id="search">
28
28
 
29
- <ons-search-input placeholder="ons-search-input" type="search">
29
+ <ons-search-input placeholder="ons-search-input" type="search" id="form1">
30
30
 
31
- <input type="search" class="search-input" placeholder="ons-search-input">
31
+ <input type="search" class="search-input" placeholder="ons-search-input" id="text1">
32
32
 
33
33
  </ons-search-input>
34
34
 
@@ -54,6 +54,36 @@
54
54
 
55
55
 
56
56
 
57
+ ```javascript
58
+
59
+ document.addEventListener('init',function(event){
60
+
61
+ if(event.target.matches('#Search_page')){
62
+
63
+
64
+
65
+ var form = document.getElementById('form1');
66
+
67
+ form.addEventListener("change" , function(event){
68
+
69
+
70
+
71
+ var a = document.getElementById('text1').value;
72
+
73
+ alert(a);
74
+
75
+
76
+
77
+ });
78
+
79
+ }
80
+
81
+ });
82
+
83
+ ```
84
+
85
+
86
+
57
87
  ons-search-inputを使用せずformでonsubmit(function()return false;)を使用することもできるのですが、ons-search-inputのonchangeのほうが使い勝手が個人的には良いと思いましたので投稿させていただきました。
58
88
 
59
89
  Androidのほうでは正常に検索ボタンとして表示されていることが確認できています。