qq_这样很好_0
2018-01-19 17:16
<!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>
你用的什么浏览器?应该是浏览器的原因,你可以换一个浏览器试试!
有些浏览器不兼容!
也可以看看你现在用的浏览器有没有设置拦截,不让弹出窗口
刚刚试了一下。你这代码根本没毛病。是其他原因。
JavaScript入门篇
739816 学习 · 9566 问题
相似问题