大神们请进,有问题要问
确定后,如果输入不为空就在新窗口打开,但是若在prompt中输入为空,怎么能让它提示’请输入正确网址‘,并循环上去从新判定它不为空,顺利打开, 用for 不知道 判断条件和变量更新怎么写,不用循环语句,那要怎么写
确定后,如果输入不为空就在新窗口打开,但是若在prompt中输入为空,怎么能让它提示’请输入正确网址‘,并循环上去从新判定它不为空,顺利打开, 用for 不知道 判断条件和变量更新怎么写,不用循环语句,那要怎么写
2016-03-11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function rec(){
var myweb=prompt("请输入网址");
if(myweb!=null){
alert(myweb);
}
else
{window.open('http://www.imooc.com','_blank','width=400,height=500px,menubar=no,toolbar=no');
}
}
</head>
<body>
<input type="button" value="点击我" onClick="rec()"/>
</body>
</html>
你可以试下这个代码
举报