<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
<script type="text/javascript">
function rec(){
var mymessage= confirm("你是女士吗?") ;
if(mymessage==true)
{
var score; //score变量,用来存储用户输入的成绩值。
score = prompt("请输入你的成绩:","http://www.imooc.com") ;
if(score!=null)
{
window.open(score,'_blank','width=600,height=400,top=100,left=0');
}
else
{
document.write("要努力了!");
}
}
else
{
document.write("你是男士!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
<script type="text/javascript">
function rec(){
var mymessage= confirm("你是女士吗?") ;
if(mymessage==true)
{
var score; //score变量,用来存储用户输入的成绩值。
score = prompt("请输入你的成绩:","http://www.imooc.com") ;
if(score!=null)
{
window.open(score,'_blank','width=600,height=400,top=100,left=0');
}
else
{
document.write("要努力了!");
}
}
else
{
document.write("你是男士!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>