在HTML中使用JavaScript时,console.log();
被替换为document.write();
。但是console.log();
仍然可以完美使用,但是我不知道何时使用它,因为它不会打印任何内容。而且我访问过的网站都没有关于此的任何真实信息。
document.write("Thanks!!");
答案 0 :(得分:2)
console.log
记录到console
。如果您使用的是Chrome,请按F12键并在其中找到它。 document.write
写入文档,即HTML页面。 document.write
如今几乎从未使用过,因为它用您所写的内容替换了整个页面,并且用处不大。
答案 1 :(得分:0)
此字符串将放置在网站上。
document.write("Thanks!!");
该字符串将放置在浏览器控制台中(按F12键切换控制台)
console.log("Thanks!!");
document.write("Thanks!!");
console.log("Thanks!!");
答案 2 :(得分:0)
console.log用于将日志写入控制台,主要用于调试目的 https://developer.mozilla.org/en-US/docs/Web/API/Console/log
document.write用于将标记写入文档,如果在页面加载后执行,它将用给定方法的标记替换标头和主体标记中的所有内容。 https://developer.mozilla.org/en-US/docs/Web/API/Document/write
答案 3 :(得分:0)
我认为您是Java脚本的新手。
console.log()
用于调试目的。
如果您想在浏览器的DOM上写一些东西,则使用document.write()
。