为何不能只用一个确认对话框 confirm ,点击确认直接进入window.open ,直接进入新窗口呢?这是为什么
为何不能只用一个确认对话框 confirm ,点击确认直接进入window.open ,直接进入新窗口呢?这是为什么
为何不能只用一个确认对话框 confirm ,点击确认直接进入window.open ,直接进入新窗口呢?这是为什么
2015-12-24
<!DOCTYPE HTML>
<html>
<head>
<title>一个对话框</title>
<script style="text/script">
function sml(){
var sm=confirm("ha");
if(sm==true)
{window.open("http://www.imooc.com");}
</script>
</head>
<body>
<script style="text/script">
var sm=confirm("是否打开网页");
if(sm==true)
{window.open("http://www.imooc.com");}
</script>
</body>
</html>
你是要这种效果吗
举报