qq嘿嘿
2018-12-10 12:52
function openWindow()
{
var open=confirm("确认新窗口打开网站吗");
if(open==true)
{ var url=prompt("输入要打开的网站","http://www.imooc.com/");
if(url!=null)
{
window.open('url','_blank','width=400,height=500,menubar=no,toolbar=no');
}
else
{
alert("baibai");
}
}
else
{ alert("baibai");
}
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var cc=confirm("是否打开?")
if(cc==true)
{
var ss=prompt("输入打开的网址","http://www.imooc.com/","_blank")
if(ss!=null)
{
window.open(ss,"width=400,height=500,menubar=no,toolbar=no");
}
else{
alert("你点击了取消");
}
}
else
{
alert("你点击了取消");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
function openWindow(){
var newwindow=confirm("是否打开慕课网?")
if(newwindow==true)
{
document.write('我点击了确定');
window.open('http://www.imooc.com','width=400,height=500,menubar=no,toolbar=no');
}
else
{
document.write('我点击了取消');
}
}
window.open('url','_blank','width=400,height=500,menubar=no,toolbar=no');里面的URL,你直接引用参数URL的不用加双引号。加了双引号等于你输入的参数是“url”,找不到你的位置的
<!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 tishikuang =confirm("是否打开新窗口");
if(tishikuang==true) {
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
JavaScript入门篇
739816 学习 · 9566 问题
相似问题