<!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 myclose()
{
mywin.close();
}
</script>
</head>
<body>
<input name="button" type="button" onClick="myclose()" value="close">
</body>
</html>
这个是因为你使用的是网页内嵌的工具关闭的网页,你把程序复制到外面创建一个html的文件打开就可以了。
可以试试这样:
<!doctype html>
<html>
<meta charset="utf-8">
<title>close()</title>
<script>
var str=window.open('http://www.baidu.com','_blank','width=400,height=200,top=100,left=100')
function rec(){
var str1=confirm("是否退出该网址");
if(str1==true){
str.close();
}
}
</script>
<body>
<p>
<input type="button" name="button" value="click" onclick="rec()">
</p>
</body>
</html>
function rec_4(){
var str = window.open('https://www.baidu.com/','_blank','window=300,height=200,left=0,top=100')
var str_1 = confirm("网址不安全是否退出")
if(str_1==true){
str.close()
}
else{
window.open('https://www.baidu.com/','_blank','window=300,height=200,left=0,top=100')
}
}
<input type="button" name="type" value="点击4" onclick="rec_4()">
你可以试试这样,
var mywin=window.open("http://www.imooc.com");
function myclose()
{
mywin.close();
}
改为:
function myclose()
{
var mywin=window.open("http://www.imooc.com");
mywin.close();
}