正文JavaScript基础知识IP云V管理员/2022-11-12/2 阅读 11/12提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 ## 输出语句 window.alert() --写入警告框 document.write()---写入HTML输出 console.log()---写入浏览器控制台 alert("hello world!");//写入警告框 document.write("你好世界~"); console.log("你好世界呀~")