2个回答
展开全部
dreamweaver通过js代码关闭网页的三种方法:
1、 不带任何提示关闭窗口的js代码
<a
href="javascript:window.opener=null;window.open('','_self');window.close();">关闭</a>
2、自定义提示关闭
<script language="javascript">
// 这个脚本是 ie6和ie7 通用的脚本
function
custom_close(){
if
(confirm("您确定要关闭本页吗?")){
window.opener=null;
window.open('','_self');
window.close();
}
else{}
}
</script>
<input id="btnClose" type="button" value="关闭本页" onClick="custom_close()"
/>
3、关闭当前页面:
<a
href="javascript:window.opener=null;window.close();">关闭</a>如果是按钮则:
Response.Write("<script
language=\"javascript\">window.opener=null;window.close();</script>");
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>简单的例子</title>
</head>
<body>
<a href="javascript:window.close();">关闭</a>
<input name="" type="button" onClick="window.close();" value="关闭"/>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>简单的例子</title>
</head>
<body>
<a href="javascript:window.close();">关闭</a>
<input name="" type="button" onClick="window.close();" value="关闭"/>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |