雨过之后
2016-04-22 11:41
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
<script type="text/javascript">
var mywin=window.open("http://www.imooc.com");
function close(){
mywin.close();
}
</script>
</head>
<body>
<input name="button" type="button" onClick="close()" value="guanbi"/>
</body>
</html>
function close(){ 把close换成其他字符 或者 换成Close
另外你换一个函数名称,不要用close
把 var mywin=window.open('http://www.imooc.com'); 放到 function close(){}函数里面就可以了。
方法名改成别名字的试试
JavaScript入门篇
739817 学习 · 9566 问题
相似问题