<!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 a=confirm("是否在新窗口打开网页"); // 新窗口打开时弹出确认框,是否打开
if(a==true)
{
var wz=prompt("请输入要打开的网址",);
if(wz!=null) {
window.open(wz,"_blank","width=400,height=500,menubat=0,toolbar=0");
}
else{
window.open(" http://www.imooc.com/","_blank","width=400,height=500,menubat=0,toolbar=0");
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
遇到了一样的问题,lz解决了吗?
我的错误 打成中文的符号了。。。。
:
我的也是:http://www.imooc.com/code/http%EF%BC%9A//www.imooc.com/
这是我的代码
<!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 isOpen = confirm("是否打开?"); // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ if(isOpen==true){ var webAim = prompt("确定打开的网址:","http://www.imooc.com/"); //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 window.open(webAim,'_blank','width=400,height=500,menubar=no,toolbar=no'); } } </script> </head> <body> <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body> </html>
求解~~~
把_blank改成_self试试