Skip to content

Commit 25bc169

Browse files
committed
Internet Explorer 11 (IE11) でのみ alert() を表示する
1 parent 53b9c19 commit 25bc169

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

ie11/alert.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!doctype html>
2+
<html>
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<script>
7+
window.onload = function () {
8+
var ua = navigator.userAgent;
9+
// ie11
10+
if (ua.indexOf("Trident") !== -1) {
11+
alert(
12+
"Internet Explorer 11 のサポート終了日は2029年1月9日です。"
13+
);
14+
} else {
15+
alert(
16+
"Internet Explorer 11 で動作確認してください。"
17+
);
18+
}
19+
};
20+
</script>
21+
</head>
22+
23+
<body>
24+
</body>
25+
26+
</html>

0 commit comments

Comments
 (0)