Output statement: 1. "window.alert(content)"; 2. "document.write(content)"; 3. "document.getElementById("id value").innerHtml="content"" ;4. "console.log(content)".
The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.
javascript output statement
1. Use window.alert() to output
<script> window.alert('警告框'); </script>
2. Use the innerHTML attribute to output
If you need JavaScript to access an HTML element, you can use the document.getElementById(id) method
Please use the id attribute To identify HTML elements, and innerHTml to get or insert element content:
<p id="demo" >我的第一个段落</p> <script> document.getElementById("demo").innerHTML="段落已修改" </scirpt>
document.getElementById("demo") is JavaScript code that uses the id attribute to find HTML elements. This method is defined in the HTML DOM.
innerHTML = "Paragraph changed." is the JavaScript code used to modify the HTML content (innerHTML) of the element.
[Recommended learning: javascript advanced tutorial]
3. Use docuemnt.write() to output
The document.write() method can write content into HTML content. This function can directly write content or html tags into html documents
<script> docuemnt.write(Date());//Date()输出中国标准时间 </script>
4. Use console.log output
If your browser supports debugging, you can use the console.log() method to display JavaScript values in the browser.
Use F12 in the browser to enable debugging mode, and click the "Console" menu in the debugging window.
For more programming related knowledge, please visit: Programming Video! !
The above is the detailed content of What are the javascript output statements?. For more information, please follow other related articles on the PHP Chinese website!