function openWindow()
{var mytext=prompt("请输入网址:","http://www.imooc.com/");
if(mytext!=null) {window.open(mytext,'_blank','height=500,width=400,menubar=no,toolbar=no');}
else
{alert("Thanks");}
}
{var mytext=prompt("请输入网址:","http://www.imooc.com/");
if(mytext!=null) {window.open(mytext,'_blank','height=500,width=400,menubar=no,toolbar=no');}
else
{alert("Thanks");}
}
最新回答 / qq_慕无忌0416094
改宽高问题:onclick="width"改为onclick="widths"就有效果改隐藏问题:oclick改为onclick就行显示没问题,只因为隐藏不了显示功能点了也没反应。
2021-05-31
var myage=alert(111)
if(myage==true){document.write(111)}
else(document.write(2123))
if(myage==true){document.write(111)}
else(document.write(2123))
2021-05-22
最新回答 / bugneverdie
//定义"取消设置"的函数function hui(){ var a=document.getElementById("txt"); a.style.="none";}style后面多了个.
2021-05-20
function openWindow(){
var conf=confirm("是否打开");
if(conf==true)
{
var newurl=prompt("请输入网址","http://www.imooc.com/");
var mywin=window.open(newurl,'_blank','width=400,height=500');
}else{
alert("Follow your order!");
}
}
var conf=confirm("是否打开");
if(conf==true)
{
var newurl=prompt("请输入网址","http://www.imooc.com/");
var mywin=window.open(newurl,'_blank','width=400,height=500');
}else{
alert("Follow your order!");
}
}
最新回答 / weixin_慕虎2198871
var url=prompt("请输出网站","http://www.imooc.com/"); 看看这一行是不是逗号有问题 我刚刚复制了 改了这里打开了
2021-04-24