js中输出信息的方法内容如下所示: 1、文档流输出 [removed]('hello'); 2、输出信息提示框 模态对话框 window.alert('要输出显示的内容'); 或 alert('要输出显示的内容'); alert(n); 3、信息确认框 var f = window.confirm('是否要进入新浪网'); confirm(""); if(f){ location.href = 'http://www.sina.com.cn'; } 4、提示输入框 window.prompt var n =