home04_9.html 560 B

1234567891011121314151617181920
  1. <head>
  2. <h1>
  3. <head>
  4. <h1>big tag</h1>
  5. </head>
  6. <body>
  7. <script>
  8. let str = "какой-то текст в котором есть один тэг <br /> и всякое другое"
  9. tagOpen = "<";
  10. tagClose = ">";
  11. indextagOpen = str.indexOf(tagOpen);
  12. indextagClose = str.indexOf(tagClose);
  13. let tag = str.slice(indextagOpen, indextagClose + 1).toLocaleUpperCase();
  14. alert(str.slice(0, indextagOpen) + tag + str.slice(indextagClose + 1));
  15. </script>
  16. </body>
  17. </h1>
  18. </head>