BOM的window对象的方法

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>window方法</title>
</head>
<body>
<script>
//1.alert
// alert('hello world')
//2.confirm
// confirm('can you save the file?')
// var con=confirm('can you save the file?');
// alert(con);//确定---true 取消----null
//3.prompt
// prompt('please input form');
var re=prompt('please input form');
alert(re);//取消----null,确定---输入什么返回什么
</script>

</body>
</html>
上一篇:idea创建springboot项目报错:Please check URL


下一篇:外文投稿时应该如何填写有关Social Media的问题?