mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-18 15:02:09 +00:00
19 lines
352 B
HTML
19 lines
352 B
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="zh-cn">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>PromiseTest</title>
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
|
</head>
|
|
|
|
<body>
|
|
<script>
|
|
Promise.all([]).then(() => {
|
|
alert('Hello!');
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |