Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
- <title>Document</title>
- <style>
- a {
- display: block;
- }
- </style>
- </head>
- <body>
- <script>
- let fileName,
- count = 0;
- while ((fileName = prompt("Введите имя файла:")) != 0) {
- document.writeln(
- `<a href="${document.location}/${fileName}">${document.location}/${fileName}</a>`
- );
- count++;
- }
- document.write(`<p>Всего файлов: ${count}</p>`);
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement