window对象的最后一种对话框是提示对话框,它显示了预先设置的信息并提供文本域供用户输入应答。它包括两个按钮,即Cancel和Ok,允许用户用两个相反的期望值来关闭这个对话框:取消整个操作或接收输入到对话框中的文本。
无意中看到window.prompt()方法,之前真没有使用过,孤陋寡闻。不过现在学习下吧。
在网页中,有时需要弹出一个提示框,而且在提示框中还需要用户输入一些内容,这就可以用prompt对象,具体实现用法如下。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″>
<script>
var textValue = decodeURI(“你好世界”);
var text;
var errorList = new Array(“好好!!”,”试试,哈哈!”);
text = prompt(“在下面输入框填“” + textValue +”””);
for ( i = 0; text != textValue; ++i) {
if ( i == errorList.length) {
i = 0;
}
alert(errorList[i]);
text = prompt(“在下面输入框填“” + textValue +”””);
}
alert(“嗯,写的不错!”);
</script>
</head>
</html>
转载请注明来源网站:blog.ytso.com谢谢!
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/14996.html