
正文
JavaScript -- Window-Confirm
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
-----032-Window-Confirm.html-----
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>标题</title>
</head>
<body>
<script type="text/javascript">
if(confirm("你说你二不二?"))
alert("你说你二你说你二不二?");
else
alert("你不说你二你说你二不二?");
</script>
</body>
</html>







