码迷,mamicode.com
首页 > Windows程序 > 详细

BOM的window对象的方法

时间:2020-01-30 23:15:03      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:www   form   script   inpu   alert   public   confirm   nal   org   

<!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>

BOM的window对象的方法

标签:www   form   script   inpu   alert   public   confirm   nal   org   

原文地址:https://www.cnblogs.com/startl/p/12244116.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!