求大神指导,看不出问题在哪
求大神多多费力指导一下,谢谢
求大神多多费力指导一下,谢谢
2019-03-18
个人感觉这个题目有点冗余,先弹出确认框确认“是否打开”,如果点“确定”,进入对话输入框“是否打开http://www.imooc.com",这时输入框又没说需不需要输入”是“才跳转。所以我直接通过确认框确认后跳转到该网址了
<script type="text/javascript">
function openWindow(){
var a=confirm("是否打开http://www.imooc.com/?");
if (a==true)
window.open('http://www.imooc.com/','_blank','width=400,height=500,toolbar=no,menubar=no');
else
window.close;
}
</script>
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
function openWindow(){
var mymesenge=confirm('是否開啟新網站');
if(mymesenge==true)
{
window.open('https://www.imooc.com/','width=400,height=500,menubar=no,toolbar=no');
}
else
{
mymesenge.close();
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
举报