第一步:把如下代码加入<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312">
<head>区域中
<SCRIPT language="JavaScript">
<!--
function openclk() {
another=open('time1.htm','NewWindow')
}
function closeclk() {
another.close()
}
//-->
</SCRIPT>
第二步:把如下代码加入<body>区域中
<FORM>
<INPUT TYPE="BUTTON" NAME="open" value="打开一个窗口" onClick="openclk()">
<BR>
<INPUT TYPE="BUTTON" NAME="close" value="关闭这个窗口" onClick="closeclk()">
</FORM>
asp.net实现关闭当前网页功能:Response.Write("<script>window.close()</script>")// 会d出询问是否关闭
Response.Write("<script>window.opener=nullwindow.close()</script>")// 不会d出询问
或者:
protected void Button1_Click(object sender, EventArgs e)
{
//关闭按钮
//关闭页面--要d出提示(IE6及以下不d出提示)
ClientScript.RegisterStartupScript(Page.GetType(), "", "<script language=javascript>window.opener=nullwindow.close()</script>")
//不d出提示直接关闭页面
ClientScript.RegisterStartupScript(Page.GetType(), "", "<script language=javascript>window.opener=nullwindow.open('','_self')window.close()</script>")
}
广告图作为背景,给div,然后在div内放个img图片当做关闭按钮。
var countfunction move() {
$('apDiv').style.top=document.documentElement.scrollTop+parseInt(count)
}
function getCount() {
count=$('apDiv').currentStyle.top
}
function close0() {
$('apDiv').style.display='none'
}
window.onscroll=move
window.onload=function(){getCount()} <!--img是关闭按钮的图片-->
<div id="apDiv" style="right:30px position:fixed width:118px height:272px z-index:2 background-image:url(image/adv.jpg)
float:left top: 110px"><img src="image/button.jpg" onClick="close0()"/></div>
图片路径还有宽高位置之类的你自己改改就可以了
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)