点击后并没有打开新窗口,为什么
是的,分号代表结束,就是不执行了
打不开新窗口、???
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:html="http://www.w3.org/1999/xhtml" xml:lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title></title>
<script type="text/javascript">
function Wopen(){ window.open('http://www.baidu.com','_blank','width=600','height=400',top=0',left=0')}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="打开新窗口!" />
</body>
</html>
解决了,,,window.open('http://www.baidu.com','_blank','width=600','height=500';)
括号里多了个分号也打不开
代码放出来,我看一下