質問編集履歴

1

質問の追記を行いました。

2021/02/15 06:01

投稿

Junpeioasis
Junpeioasis

スコア9

test CHANGED
File without changes
test CHANGED
@@ -34,7 +34,33 @@
34
34
 
35
35
 
36
36
 
37
-
37
+ 2/15編集、追記。
38
+
39
+ ご回答頂いた内容などを元に、迷走を繰り返してきました。
40
+
41
+ 申し訳ありません。いまだ解決できずにいます。
42
+
43
+
44
+
45
+ 現在以下のような形になっております。
46
+
47
+
48
+
49
+ コード本文にも記載しているのですが、
50
+
51
+ document.getElementByIdを使用して、
52
+
53
+ ifが成り立った時の処理を行う方法を模索しています。
54
+
55
+ この場合、if、テキストボックスに入力された文字が1だった場合、ボックスをredにする。
56
+
57
+ です。
58
+
59
+ その時に、実際色を変えるべきボックスを、どう指定したらいいか悩んでいます。
60
+
61
+
62
+
63
+ コードの中に、//この行です// と記載のある行の、直近の()内の指定の仕方です。
38
64
 
39
65
 
40
66
 
@@ -54,7 +80,9 @@
54
80
 
55
81
  <link rel="stylesheet" type="text/css" href="base.css">
56
82
 
57
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script>
83
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
84
+
85
+ <script>
58
86
 
59
87
  $(function(){
60
88
 
@@ -64,19 +92,37 @@
64
92
 
65
93
 
66
94
 
67
- if (atai=1) {
95
+ if ((atai == 1)) {
96
+
97
+
98
+
68
-
99
+ {
100
+
101
+ if(document.getElementById)
102
+
103
+ {
104
+
105
+ document.getElementById("") //この行です。//
106
+
107
+ .style.color = "red";
108
+
109
+ }
110
+
69
- console.log(入力値1);
111
+ }console.log(1);
70
112
 
71
113
  }
72
114
 
115
+
116
+
73
- else if (atai=2){
117
+ else if ((atai == 2)){
74
118
 
75
119
  console.log(入力値2);
76
120
 
77
121
  }
78
122
 
123
+
124
+
79
- else (atai= ここです。){ // この行です。//
125
+ else {
80
126
 
81
127
  console.log(他);
82
128
 
@@ -108,10 +154,18 @@
108
154
 
109
155
  </html>
110
156
 
157
+
158
+
111
159
  ```
112
160
 
113
161
 
114
162
 
163
+
164
+
165
+
166
+
167
+
168
+
115
169
  ```css
116
170
 
117
171
  @charset "UTF-8";