刷新全部窗口

<p>response.Write(&quot;<script>alert('更新设置成功!'); parent.location.href=parent.location.href; </script>&quot;)</p>

js 弹窗 刷新

用iframe、弹出子页面刷新父页面

iframe
   parent.location.reload();

弹出子页面
   window.opener.location.reload();

子窗口刷新父窗口

    self.window.opener.locaction.reload();

More...

jquery 消息提示类jquery插件整理 (二)

1. Dynamic tooltip

Very cool tooltip! It’s very well made because it consists of cool transition effects and it also has a transparency and a drop shadow effect.

 

More...

jquery 消息提示类jquery插件整理 (一)

(1)Facebox 

Facebox 是一个基于jQuery,Facebook-style的lightbox。能够展示示images,divs或者整个远程页面。




Facebox

More...

自动缩小的js图片代码

 代码如下

 
function resizepic(thispic)
{
if(thispic.width>550) thispic.width=550;
}
 
 
var flag=false; 
  function resizepic130(ImgD){ 

More...

iis 点击任何网址 地址栏不变

 iis 点击任何网址 地址栏不变?   

整个网站不管怎么点都只显示网址,不显示其他后缀的解决方法?

经过测试IIS6.0下无此功能,只能通过代码实现,以下是html 代码:

<html>   

<head> 
<!--这一段就是框架破坏者脚本--> 
<Script   LANGUAGE= "JavaScript "> 

More...

js只能输入数字,小数点

<html>
<head>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
<title>js只能输入数字;js只能输入数字和小数点</title>
<script language="JavaScript" type="text/javascript">

More...

禁止网页另存为的代码 如何破解网页禁止另存为 JS常用代码

<!--禁止网页另存为: --> <noscript><iframe src=*.html></iframe></noscript><!-- 禁止选择文本:

More...

复制文章内容自动加网址和版权信息的代码

复制文章内容自动加网址和版权信息的代码

<script>

document.body.oncopy = function () { setTimeout( function () { var text = clipboardData.getData("text"); if (text) { text = text + "\r\n本篇文章来源于69BT博客"+location.href; clipboardData.setData("text", text); } }, 100 ) }

More...

js 版日期选择

 

JTimer.rar

日期调用

<script type="text/javascript" src="JTimer.js"></script>

<input type="text" readonly onclick="JTC.setday(this)"/>

More...

javascript 自动返回上一页并自动刷新

简洁而使用的方式是使用request.servervariables("http_referer")。只要将要返回的页面设为该参数就可以实现。
如:
<%response.write ("<script language='JavaScript'>alert('简历通过!')</script>")
...

More...

简繁转换 js 支持firefox

 

<li><a id="GB_BIG">繁體</a></li><li>

然后在本页写JS:

<script type="text/javascript" src="include/javascript/GB_BIG.js"></script>
<script type="text/javascript">

More...

js物理弹性漂浮广告支持ie8和firefox(最新)

<!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">

More...