摘要:<SCRIPT LANGUAGE="JavaScript"><!--var myDate = new Date(); myDate.getYear(); //获取当前年份(2位) myDate.getFullYear(); //获取完整的年份(4位,1970-????) myDate.getMonth(); //获取当前月份(0-11,0代表1月) myDate.getDate(); //获取当前日(1-31) myDate.getDay(); //获取当前星期X(0-6,0代表星期天) myDate.ge...
阅读全文
08 2011 档案
摘要:如题代码document.write("<iframe id=\"frame1\" scrolling=no frameBorder=0 width=1050 height=700 src=\"http://www.cnblogs.com/dso.html\">");document.write("</iframe>");frame1.document.onreadystatechange=fnStartInit;function fnStartInit(){// alert(frame1.
阅读全文
摘要:本来要实现在页面中载入多个iframe,而iframe中的数据是从SQL查询的,恰好我的iframe是js循环排列的,因为js执行速度的原因,iframe不能显示,想要在js的循环中,每次执行都停留一段时间让每一个iframe都能加载完全,需要一个函数来停止js的页面元素加载。代码如下:function sleep(numberMillis) { var now = new Date(); var exitTime = now.getTime() + numberMillis; while (true) { now = new Date(); if (now.get...
阅读全文
摘要:一、js与jsp:1、转码:js处理<script type="text/javascript">var ch = "中文";function test(ch){ var title = ch != '' ? encodeURI(encodeURI(ch)) : ''; var path = "test.jsp?title="+title;}</script>2、解码:jsp处理<% String title = request.getParameter("tit
阅读全文
摘要:不管是从外部引进来的js还是页面内部的js,顺序都是后面的覆盖前面的,同一个js外部文件里面有多个同名(注意仅仅是同名,不管参数和返回值)的函数的话,后面的覆盖前面的,页面内部有多个js同名函数仍然是后面定义的覆盖前面定义的。记住后面的覆盖前面的就不难确定函数的调用顺序了,假如一个页面内由一个函数,然后页面引进一个外部js文件,里面也有同名的函数,页面最终调用的是外部页面的函数,因为页面引进的覆盖了页面内部的,有一些人有把js写在</html>标签前面的习惯,这样的话,它会覆盖前面定义的同名的所有函数,这对开发有时候很有用,外部js定义一个是通用的函数,但是到了具体的页面可能函数的
阅读全文
摘要:进入:db2cmd命令行//第一步:编目远程节点//db2 uncatalog node itildb2 uncatalog node itil//itil:远程节点名db2 catalog tcpip node itil remote 192.168.5.73 server 50000 remote_instance db2 system dpsvrdb2 catalog tcpip node tc remote 192.168.0.15 server 50008 remote_instance db2 system dpsvr//第二步:编目数据库//db2 uncatalog datab
阅读全文
摘要:import java.security.*;import javax.crypto.Cipher;import javax.crypto.KeyGenerator;public class PrivateKey { public static void main(String[] args) throws Exception { String before = "kristain"; byte[] plainText = before.getBytes("UTF-8"); //得到一个使用AES算法的KeyGenerator的实例; KeyGenera
阅读全文
摘要:图表显示是很多开发工作所必不可少的一项功能,今天我介绍一个前段时间发现的免费的Flash图表开发工具,可以通过Adobe Flash实现数据的图表化,动态化以及相互交互。 FusionChart是一个简单易用的图表工具,使用它可以显示丰富的柱状图和曲线图,而且完全免费。使用FusionChart可以方便的生成漂亮的柱状图、曲线图等图标,显示直观、清晰,可以让管理层在最短的时间内宏观掌握业绩信息。 FusionCharts和其他常见的图表控件不同,它使用Flash技术,能够快速创建引人注目的动态图像效果。充分利用Macromedia Flash所具有的流畅功能来创建简洁的、交互式的和引人注目的.
阅读全文