倾城恋1115
2015-04-09 10:12
<script type="text/javascript">
function openWindow(){
var mymessage=confirm("是否打开?");
if(mymessage==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("再见!");}
else
{alert("再见!");}
}
</script>
{window.open(url,'_blank',width=400,height=500,menubar=no,toolbar=no')
第三个参数格式不规范 没有左单引号闭合
你自己看吧,给你改好的。。。
function openWindow(){
var mymessage=confirm("是否打开?");
if(mymessage==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("再见!");}
}
else
{alert("再见!");}
}
出现了问题应该看看别人的代码啊 。。还有你写代码很不仔细。。。
JavaScript入门篇
739817 学习 · 9566 问题
相似问题