经典js系列4

十五、图片之间的切换 <script language=JavaScript><!--var imgUrl=new Array();var imgLink=new Array();var adNum=0;var jumpUrl="http://sports.tom.com/";imgLink[1]="http://sports.tom.com/gnzt/2005yg/";imgLink[2]="http://sports.tom.com/zhty/";imgUrl[1]="http://img.sports.tom.com/img/assets/200509/050927071818sportsgnzt200592701.jpg";imgUrl[2]="http://img.sports.tom.com/img/assets/200509/050927075953zt20050926107.jpg";var imgPre=new [...]

By |2024-01-19T06:27:58-08:00February 29, 2008|Archive|0 Comments

经典js系列3

九、JSP页面自动生成html页面/或任何格式页面 先建立一个模本页面:template.htm<html><head><title>###title###</title><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><LINK href="../css.css" rel=stylesheet type=text/css></head><body><table width="500" border="0" [...]

By |2024-01-19T06:26:25-08:00February 29, 2008|Archive|0 Comments

经典js系列2

四、接收键盘指令的脚本 按A就会跳转到娃娃亲的网页,请按A<SCRIPT language="JavaScript"><!--var hotkey=97var destination="http://www.wawaqin.com"if (document.layers)document.captureEvents(Event.KEYPRESS)function backhome(e){if (document.layers){if (e.which==hotkey)window.location=destination}else if [...]

By |2024-01-19T06:25:20-08:00February 29, 2008|Archive|0 Comments

经典js系列1

一、鼠标旁边的提示信息,类似与163登录后的页面提示效果 <a href="http://www.wawaqin.com/map.html" title="这是提示">tip</a> <script Language="JavaScript"> //***********默认设置定义.********************* tPopWait=50;//停留tWait豪秒后显示提示。 tPopShow=5000;//显示tShow豪秒后关闭提示 showPopStep=20; [...]

By |2024-01-19T06:23:24-08:00February 29, 2008|Archive|0 Comments

一些很实用且必用的小脚本代码

脚本1:进入主页以后自动播放声音 <embed src="pnm://10.13.31.90/~kayvin/mihunji.rm" hidden=true autostart=true loop=true> 脚本2:进入主页后自动最大话,省的去在自己单击了 <script> self.moveTo(0,0) self.resizeTo(screen.availWidth,screen.availHeight) [...]

By |2024-01-19T06:22:08-08:00February 29, 2008|Archive|0 Comments

CSS compatibility

一、CSS HACK以下两种方法几乎能解决现今所有HACK. 1, !important 随着IE7对!important的支持, !important 方法现在只针对IE6的HACK.(注意写法.记得该声明位置需要提前.)<style>#wrapper{width: 100px!important; /* IE7+FF [...]

By |2024-01-19T06:20:18-08:00February 29, 2008|Archive|0 Comments

js notes

问题:IE7.0正常,IE6.0卻出現錯誤:Marquee 未定義!解决方案:IE6: MSClass.js: alert("您要设置的\"" + arguments[0] + "\"初始化错误\r\n请检查标签ID设置是否正确!"); 改为: alert("您要设置的'" [...]

By |2024-01-19T06:20:49-08:00February 28, 2008|Archive|0 Comments

Velocity用户手册—中文版(学习修改版)

Velocity的能力远不止web站点开发这个领域,例如,它可以从模板(template)产生SQL和PostScript、XML,它也可以被当作一个独立工具来产生源代码和报告,或者作为其他系统的集成组件使用。Velocity也可以为Turbine web开发架构提供模板服务(template service)。Velocity+Turbine提供一个模板服务的方式允许一个web应用以一个真正的MVC模型进行开发。 Velocity能为我们作什么? The Mud Store Example 假设你是一家专门出售Mud的在线商店的页面设计人员,让我们暂且称它为“在线MUD商店”。你们的业务很旺,客户下了各种类型和数量的mud订 单。他们都是通过输入用户名和密码后才登陆到你的网站,登陆后就允许他们查看订单并购买更多的mud。现在,一种非常流行的mud正在打折销售。另外有一 [...]

By |2024-01-19T06:16:44-08:00February 28, 2008|Archive|0 Comments

SCJP相关资源

http://www.jchq.net/essentials/full.htmhttp://bobcat.webappcabaret.net/javachina/index.htmlhttp://www.javaranch.com/maha/http://www.jchq.net/certkey/index.htmhttp://www.janeg.ca/scjp/language.htmlhttp://www.javaranch.com/certfaq.jsp

By |2024-01-19T06:08:27-08:00February 28, 2008|Archive|0 Comments
Go to Top