点击确定后,没有输出内容
点击确定,之后不是应该输出信息吗?为什么我的一片空白,什么都没有
点击确定,之后不是应该输出信息吗?为什么我的一片空白,什么都没有
2017-04-19
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>confirm</title>
<script type="text/javascript">
function rec(){
var mymessage= confirm("你是女生吗?") ;
if(mymessage==true)
{
document.write("你是女士!");
}
else
{
document.write("你是男士!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,弹出确认对话框" />
</body>
</html>
用 var url = prompt("请输入网址","http://imooc.com..");
再用window.open(url,'_blank','.....');
举报