<!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>
相关文章
- 03-06python3【基础】-字符串 常用的方法
- 03-06SWMM模型子汇水区划分的几种方法
- 03-06ssh scp ssh-copy-id 非22端口的操作方法
- 03-06mac x Yosemide(10.10) 下安装 jdk 1.7 (jdk 1.8)的方法
- 03-06Sublime3 中在行尾增加一个分号的方法
- 03-06Winform中只运行运行一个实例的方法
- 03-06常用的windowd属性和对象
- 03-06在人类小鼠细胞系中的细胞特异性选择性剪切分析之统计方法篇
- 03-067、配置文件、封装读取配置文件的方法
- 03-06python-用底部编辑线,状态栏和滚动历史记录实现“控制台外壳”的最佳方法?