質問編集履歴
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -103,3 +103,71 @@
|
|
103
103
|
|
104
104
|
|
105
105
|
よろしくお願いします。
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
# 追記
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
このような形で書いて実現できました。
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
```HTML
|
126
|
+
|
127
|
+
<input type="text" id="textForm">
|
128
|
+
|
129
|
+
<label for="textForm">坪</label>
|
130
|
+
|
131
|
+
<button id="cluc" class="btn btn-outline-primary">変換</button>
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
<input type="text" id="resultForm">
|
136
|
+
|
137
|
+
<label for="resultForm">㎡</label>
|
138
|
+
|
139
|
+
```
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
```js
|
146
|
+
|
147
|
+
<script>
|
148
|
+
|
149
|
+
var button = document.getElementById("cluc");
|
150
|
+
|
151
|
+
button.addEventListener("click", function(e) {
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
e.preventDefault();
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
var textForm = document.getElementById("textForm").value;
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
var resultForm = document.getElementById("resultForm");
|
164
|
+
|
165
|
+
// resultForm.value = textForm * 3.30578;
|
166
|
+
|
167
|
+
resultForm.value = Math.round(textForm * 3.30578512396 * 100) / 100;
|
168
|
+
|
169
|
+
});
|
170
|
+
|
171
|
+
</script>
|
172
|
+
|
173
|
+
```
|
1
誤字
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
J
|
1
|
+
JavaScriptで計算をしたいのですが、できません。
|
test
CHANGED
@@ -58,14 +58,6 @@
|
|
58
58
|
|
59
59
|
|
60
60
|
|
61
|
-
jQueryの読み込み部分
|
62
|
-
|
63
|
-
```HTML
|
64
|
-
|
65
|
-
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
|
66
|
-
|
67
|
-
```
|
68
|
-
|
69
61
|
|
70
62
|
|
71
63
|
↓エラー画面
|