打开新窗口(window.open)

点击按钮的时候

js打开http://www.imooc.com网页,将在新窗体中打开,宽为600,高为400,距屏顶100像素,屏左0像素,无菜单条,无滚动条,无状态栏。当点击按钮时,打开新窗口。

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
  function Wopen(){
window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0,menubar=no,scrollbars=no,status=no')  
  } 
</script>
</head>
<body>
    <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>


你可能感兴趣的:(打开新窗口(window.open))