質問編集履歴
2
修正依頼がきたため
test
CHANGED
File without changes
|
test
CHANGED
@@ -68,6 +68,64 @@
|
|
68
68
|
|
69
69
|
```
|
70
70
|
|
71
|
+
```html
|
72
|
+
|
73
|
+
easy.html
|
74
|
+
|
75
|
+
<!DOCTYPE html>
|
76
|
+
|
77
|
+
<html lang="en" dir="ltr">
|
78
|
+
|
79
|
+
<head>
|
80
|
+
|
81
|
+
<meta charset="utf-8">
|
82
|
+
|
83
|
+
<title></title>
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
<style media="screen">
|
88
|
+
|
89
|
+
#detailscontents{
|
90
|
+
|
91
|
+
background-color: white;
|
92
|
+
|
93
|
+
width: 100px;
|
94
|
+
|
95
|
+
}
|
96
|
+
|
97
|
+
</style>
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
</head>
|
102
|
+
|
103
|
+
<body>
|
104
|
+
|
105
|
+
<div id="detailscontents">
|
106
|
+
|
107
|
+
<b id="easy">EASY</b>
|
108
|
+
|
109
|
+
<br>
|
110
|
+
|
111
|
+
<p>SCORE:<span id="score">0</span></p>
|
112
|
+
|
113
|
+
<p>ミスの回数<span id="misscount">0</span></p>
|
114
|
+
|
115
|
+
<script type="text/javascript" src="rogick.js"></script>
|
116
|
+
|
117
|
+
</div>
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
</body>
|
122
|
+
|
123
|
+
</html>
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
```
|
128
|
+
|
71
129
|
|
72
130
|
|
73
131
|
```js
|
1
ああああああああああああああああああああああああああああああああああああああああああああああ
test
CHANGED
File without changes
|
test
CHANGED
@@ -97,3 +97,15 @@
|
|
97
97
|
|
98
98
|
|
99
99
|
どうすればよいですか?
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
chromeの開発者ツールには
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
[Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help,
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
このようなエラーが出ていました
|