“Como acessar a variável JavaScript em HTML” Respostas de código

HTML Chamada de variável JavaScript

<!DOCTYPE html>
<html>
    <body>
        <!--\|/id here-->
        <p id="myText"></p>
        <p id="myTextTag"></p>
        <script>
            <!--Here we retrieve the text and show what we want to write...
            var text = document.getElementById("myText");
            var tag = document.getElementById("myTextTag");
            var toWrite = "Hello"
            var toWriteTag = "<a href='https://stackoverflow.com'>Stack Overflow</a>"
            <!--...and here we are actually affecting the text.-->
            text.innerHTML = toWrite
            tag.innerHTML = toWriteTag
        </script>
    <body>
<html>
Rafael Oliveira

Como acessar a variável JavaScript em HTML

It is impossible to access a JavaScript variable using
HTML. HTML is completely different to JavaScript, it is
a markup language (HTML stands for Hyper Text Markup
Language), meaning it is only used to format or prepare
base content that is displayed.
MattDESTROYER

Respostas semelhantes a “Como acessar a variável JavaScript em HTML”

Perguntas semelhantes a “Como acessar a variável JavaScript em HTML”

Mais respostas relacionadas para “Como acessar a variável JavaScript em HTML” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código