<script type="text/javascript">
function Wopen(){
window.open('http://www.baidu.com','_blank','width=600,height=400,top=100px,left=0px')
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
function Wopen(){
window.open('http://www.baidu.com','_blank','width=600,height=400,top=100px,left=0px')
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
2015-05-06
function openWindow(){
var message= confirm("是否打开窗口?");
if(message==true)
{
var UrlAd= prompt("地址","http://www.imooc.com")
if(prompt!=null){
window.open(UrlAd,'_blank','width=400px,height=500px,menubar=no,toolbar=no')
}
}
}
var message= confirm("是否打开窗口?");
if(message==true)
{
var UrlAd= prompt("地址","http://www.imooc.com")
if(prompt!=null){
window.open(UrlAd,'_blank','width=400px,height=500px,menubar=no,toolbar=no')
}
}
}
建议童鞋们在别的地方写好mywin.close();后粘贴过来。。。
慕课的这个是即时运行的,你停一下自己就蹦窗口。。。神烦。。。
慕课的这个是即时运行的,你停一下自己就蹦窗口。。。神烦。。。
2015-05-05