1234567891011121314151617181920 |
- <head>
- <h1>
- <head>
- <h1>big tag</h1>
- </head>
- <body>
- <script>
- let str = "какой-то текст в котором есть один тэг <br /> и всякое другое"
- tagOpen = "<";
- tagClose = ">";
- indextagOpen = str.indexOf(tagOpen);
- indextagClose = str.indexOf(tagClose);
- let tag = str.slice(indextagOpen, indextagClose + 1).toLocaleUpperCase();
- alert(str.slice(0, indextagOpen) + tag + str.slice(indextagClose + 1));
- </script>
- </body>
- </h1>
- </head>
|