显示不出网页啊
怎么显示不出来界面
怎么显示不出来界面
2017-03-27
你打单引号的时候注意一下,前面http打过了单引号,你打那个地址栏后面的单引号时,光标会自动跳到后面,但是此时单引号并没有加上,所以当后面有单引号,却又要加单引号时,要点3下
<!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','height=600,width=400,top=100,left=0');
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>
举报