質問編集履歴
1
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
formタグ内にあるinputタグのonclickが機能しません.
|
14
14
|
|
15
|
-
ラジオボタンの”
|
15
|
+
ラジオボタンの”2”中にも関数onClick(e)が機能してます。
|
16
16
|
|
17
17
|
```
|
18
18
|
|
@@ -28,17 +28,13 @@
|
|
28
28
|
|
29
29
|
<form name="form1">
|
30
30
|
|
31
|
-
<input type="radio" name="
|
31
|
+
<input type="radio" name="button" value="1" onclick="onclick(e);" checked /> 1
|
32
32
|
|
33
|
-
<input type="radio" name="
|
33
|
+
<input type="radio" name="button" value="2" onclick="別の関数;"/> 2
|
34
34
|
|
35
35
|
</form>
|
36
36
|
|
37
|
-
<canvas id="canvas" width="600" height="400">
|
38
|
-
|
39
|
-
<script src="
|
37
|
+
<script src="operation.js"></script>
|
40
|
-
|
41
|
-
</canvas>
|
42
38
|
|
43
39
|
</body>
|
44
40
|
|
@@ -56,15 +52,9 @@
|
|
56
52
|
|
57
53
|
function onClick(e) {
|
58
54
|
|
59
|
-
|
55
|
+
//関数の中身は省略
|
60
56
|
|
61
|
-
var x = e.clientX - canvas.offsetLeft;
|
62
57
|
|
63
|
-
var y = e.clientY - canvas.offsetTop;
|
64
|
-
|
65
|
-
console.log("x:", x, "y:", y);
|
66
|
-
|
67
|
-
//円の描画は省略
|
68
58
|
|
69
59
|
|
70
60
|
|