<script type="text/javascript">
function Wopen(){
window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0')
}
</script>
function Wopen(){
window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0')
}
</script>
2018-08-15
function openWindon(){
if(confirm("确定打开新窗口吗?")){
var url = prompt("请输入一个网址","http://www.imooc.com/");
window.open( url,"_blank","toolbar=no, menubar=no, scrollbars=yes, width=400, height=400");
}
}
if(confirm("确定打开新窗口吗?")){
var url = prompt("请输入一个网址","http://www.imooc.com/");
window.open( url,"_blank","toolbar=no, menubar=no, scrollbars=yes, width=400, height=400");
}
}
var mystr="我是";
var mychar="JavaScript";
document.write(mychar+"<br />");
document.write(mystr,mychar,"的忠实粉丝");
var mychar="JavaScript";
document.write(mychar+"<br />");
document.write(mystr,mychar,"的忠实粉丝");
2018-08-04
window.open([],[],[])这个格式是不可取的,因为当你输入http://www.时,//后面会被注释掉,而''就不会
2018-08-02