<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
function Wopen()
{
var a=confirm("是否打开新窗口?");
// 新窗口打开时弹出确认框,是否打开
if(a=true)
{
var b=prompt("请输入网址","https://www.imooc.com/code/411");
var c=document.write(b);//可以显示正确的网址
open("c,"_blank","width=300,height=200,menubar=no,toolbar=yes, status=no,scrollbars=yes");//无法打开网页
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>
问题:为什么open()方法里的URL无法用变量赋值?
<!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 anser = window.confirm("是否打开新窗口");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if(anser){
var url=window.prompt("请输入网址","http://www.imooc.com/");
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open(url,"_blank",'width=400,height=500,menubar=no,toolbar=no');
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
<!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 b = confirm("是否打开新的页面");
if(b == true){
var uri = prompt("请输入你的网址!");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if(!uri){
uri = 'http://www.imooc.com/';
}
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open(uri,'_self',widht=400,height=500,menubar=no,toolbar=no);
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
// 新窗口打开时弹出确认框,是否打开
varuri = prompt("请输入你的网址!");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if(!uri){
uri = 'http://www.imooc.com/';
}
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open(uri,'_self',widht=400,height=500,status=no);
uri.close();
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
你open的是变量c,而c变量的的内容是document.write(b),你可以直接open(b)试试