Output the HTML tags by using the document.write : write « Document « JavaScript Tutorial






<HTML>
<BODY>
<SCRIPT language="JavaScript">
<!--
    var myheading="This is My Web Page!";
    var linktag="<A HREF='http://www.java2s.com'>Web Site Link!</A>";
    var sometext="This text can be affected by other statements.";
    var begineffect="<U>";
    var endeffect="</U>";
    var newsection="<BR>";
    document.write(myheading);
    document.write(newsection);
    document.write(begineffect);
    document.write(sometext);
    document.write(endeffect);
    document.write(newsection);
    document.write(linktag);
    document.write(newsection);
    document.write(sometext);
//-->
</SCRIPT>
</BODY>
</HTML>








14.37.write
14.37.1.Writing to a Document
14.37.2.Use document.write() to output the HTML tags
14.37.3.Use document.write between the HTML tags
14.37.4.Output all array element with document.write
14.37.5.Do calculation in document.write
14.37.6.Escape quotation marks in document.write
14.37.7.Output the HTML tags by using the document.write
14.37.8.document.writeln()