qq_优雅的世界_0
2017-06-07 22:18
function openWindow(){ var newWeb = conmpt('是否打开'); if(newWeb==true) { window.open('http://www.imooc.com','width=400px,height=500px,menubar=no,toolbar=no'); }else{ return ''; } } 开始也有点懵,想想怎么去实现吧
哥们。。。你的代码写错了,不是“conmpt”,是“ confirm”。。。
把 conmpt 换成 confirm
这是我的思路:
function openWindow(){
var newWeb = confirm('是否打开');
if(newWeb==true){
window.open('http://www.imooc.com','width=400px,height=500px,menubar=no,toolbar=no');
}else{
return '';
}
}
openWindow();
JavaScript入门篇
739817 学习 · 9566 问题
相似问题