博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaScript Output
阅读量:5213 次
发布时间:2019-06-14

本文共 820 字,大约阅读时间需要 2 分钟。

JS can "display" data in different ways:

(1)Writing into an alert box, using window.alert();

1 2 3 4 

My first example.

5 8 9
View Code

(2)Writing into the HTML output using document.write();

1 
View Code

But, using document.write() after an HTML document is fully loaded, will delete all existing HTML:

My First Web Page

My first paragraph.

View Code

(3)Writing into an HTML element, using innerHTML;

1  2  3  4  5 

My First Web Page

6

My First Paragraph.

7 8

9 10 13 14 15
View Code

(4)Writing into the browser console, using console.log().

1  2  3  4  5 

My First Web Page

6

My first paragraph.

7 8

9 Activate debugging in your browser (Chrome, IE, Firefox) with F12, and select "Console" in the debugger menu.10

11 12 15 16 17
View Code

这样就可以按F12调试自己的代码了。

转载于:https://www.cnblogs.com/Bonnieh/p/5656454.html

你可能感兴趣的文章
白话经典算法系列之六 快速排序 快速搞定
查看>>
错了:用流量能够放肆,有wifi则要节制
查看>>
https://zhidao.baidu.com/question/362784520674844572.html
查看>>
【MFC 学习笔记】CFile读写文件
查看>>
PAT B1018.锤子剪刀布(20)
查看>>
Yii2.0 集成使用富头像上传编辑器
查看>>
Extjs控件之 grid打印功能
查看>>
枚举类型(不常用)递归
查看>>
ETL
查看>>
Tomcat源码分析(六)--日志记录器和国际化
查看>>
今天把csdn的博客搬家到博客园
查看>>
D3.js+Es6+webpack构建人物关系图(力导向图),动态更新数据,点击增加节点,拖拽增加连线......
查看>>
基于网络的 Red Hat 无人值守安装
查看>>
Mybatis第六篇【配置文件和映射文件再解读、占位符、主键生成与获取、Mapper代理】...
查看>>
MySQL学习笔记(二):MySQL数据类型汇总及选择参考
查看>>
jQ 移动端返回顶部代码整理
查看>>
博客园界面美化
查看>>
sql查询远程数据库的表的数据并填充到本地数据库的表
查看>>
YII缓存依赖的应用
查看>>
决策树在机器学习的理论学习与实践
查看>>