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

弹出用户输入的对话框window.prompt()

时间:2015-04-09 17:00:26      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

  在网页中,有时需要弹出一个提示框,而且在提示框中还需要用户输入一些内容,这就可以用prompt对象,具体实现用法如下。

  

<!DOCTYPE html>
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <script>
	 var _saytext = decodeURI("我真笨");
	 
	 var _text; 
	 
	 var err_list = new Array("别乱填!!","快填,别试了!!");
	 
	 _text = prompt("在下面输入框填“" + _saytext +"”"); 
	 
	 for ( i = 0; _text != _saytext; ++i) { 
		 if ( i == err_list.length) {
			i = 0;
		 } 
		 alert(err_list[i]); 
		 _text = prompt("在下面输入框填“" + _saytext +"”");
	 } 
	 
	 alert("嗯,这就对了!");
 </script> 
 </head>
 </html>

  

弹出用户输入的对话框window.prompt()

标签:

原文地址:http://www.cnblogs.com/liujinxin/p/4409839.html

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