dreamweaver怎么页面关闭按钮


dreamweaver怎么页面关闭按钮

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>