js中输出信息的方法
1、文档流输出
document.write(‘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 = window.prompt(‘请输入年龄‘,18);
if(n>=18){
document.write(‘欢迎你年轻人‘);
}
5、控制标签,在标签上直接输出,
通过document.getElementById(‘id‘) 找到对象标签,可以直接控制里边的值,进行输出
setInterval(function(){document.getElementById(‘ttt‘).innerHTML = "当前时间:"+new Date().toLocaleString();},1000);
<script>
document.getElementById(‘uname‘).value = "佚名";
</script>
6、把信息直接输出到标题
document.title = "hello";
时间: 2024-12-10 21:12:20