JS输出
时间:2020-02-23 14:33:51 来源:igfitidea点击:
在本教程中,我们将学习JavaScript输出。
本教程介绍了一些我们可以用JavaScript显示输出的可能方式。
console.log()
我们使用console.log()方法在浏览器控制台中显示输出。
如何打开浏览器控制台?
Chrome:查看->开发人员->开发人员工具
Firefox:工具-> Web开发人员-> Web控制台
Safari:开发人员->显示错误控制台
或者,只需右键单击页面,然后选择"检查/检查元素",然后单击"控制台"选项卡。
在下面的示例中," Hello World!"将在浏览器控制台中作为输出打印。
console.log("Hello World!");
console.info()
我们使用console.info()方法在浏览器控制台中显示一些信息。
console.info("This is an info message.");
console.error()
我们使用console.error()方法在浏览器控制台中显示错误消息。
console.error("This is an error message.");
console.warn()
我们使用console.warn()方法在浏览器控制台中显示警告消息。
console.warn("This is a warning message.");
document.write()
我们使用document.write()
方法在HTML文档中输出。
在下面的示例中," Hello World!"将显示在HTML文档页面中。
document.write("Hello World!");
window.alert()
我们使用window.alert()方法在警报框中显示输出。
在下面的示例中,我们将获得一个警告框,其输出为" Hello World!"。
window.alert("Hello World!");