`
baby69yy2000
  • 浏览: 187874 次
  • 性别: Icon_minigender_1
  • 来自: 自己输入城市...
社区版块
存档分类
最新评论
文章列表
原文地址:http://www.blueidea.com/tech/web/2006/4324.asp <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>密码</title> <style type="text/css"> body{ font-size:12px; font-family: Arial, Helv ...
转自:http://v1.djasp.net/static/zh/2055.stm JavaScript 是世界上最被误解的语言。 很多人认为它缺乏信息隐藏的特性所以对象不能有私有实例变量和方法。但这是一个误解。JavaScript对象同样可以拥有私有变量。下面就讲解一下: 对象 JavaScript根本上都是关于的对象(Object)的。数组(Array)是对象,函数(Function)是对象,Object就不说了。那什么是对象?对象是名称-值的配对的集合。名称是字符串,值可以是字符串、数字、布尔值和对象(包括数组和函数)。对象常常实现为哈希表以快速存取值。 如果一个值 ...
//---------------------------------------------------------------------- // Map function Map(){ this.key = []; this.value = {}; } Map.prototype.put = function(k, v){ if (this.value[k] == null) this.key.push(k); this.value[k] = v; }; Map.prototype.get = functi ...
//这里主要是说明 对于关联数组的遍历,首先定义一个数组: var arr = new Array(); //随便创建关联数组的数据如下: arr["name"] = "mary"; arr["age"] = "3"; arr["sex"] = "man"; //利用 for 循环遍历如下: f ...

js资源

    博客分类:
  • JS-1
DTree树不错,使用起来很方便 可以到http://destroydrop.com/javascripts/tree/default.html下载最新的版本

免费图标下载

    博客分类:
  • DL
图标 http://www.freeiconsdownload.com/ 一个网页小图标网站 http://www.iconarchive.com/ 素材中国 http://online.sccnn.com/html/cion/gificon/index-1.htm

JS函数

    博客分类:
  • JS-1
F# 
1.函数 // ①-->JS的重载方法 function add(){ if (arguments.length == 1) alert(arguments[0]); else if (arguments.length == 2) alert(arguments[0] + arguments[1]); } add(20); // 20 add(20, 30); // 50 // ②-->Function类 var add = new Function("a", "b" ...
把以下内容存入记事本: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.txt] @="txtfile" "Content Type"="text/plain" [HKEY_CLASSES_ROOT\.txt\ShellNew] "NullFile"="" [HKEY_CLASSES_ROOT\txtfile] @="文本文档" [HKEY_CLASSES_ROOT\tx ...
1.锚点链接 <body> <a name="t">anthor</a> <br /> <br /> .... <a href="#t">link</a> </body> 2.分割线<hr> <hr noshade="noshade" c color="blue" width="300" size="2" align="center" ...
<head> <!-- BEGIN METADATA --> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <!-- 三秒之后打开google --> <meta http-equiv="refresh" content= "3; url=http://www.google.cn" /> <!-- keywords写给搜索引擎看的 --&g ...
Tomcat下载地址: http://tomcat.apache.org/ 1.环境变量设置 classpath:D:\tomcat5.5\bin;D:\tomcat5.5\common\lib JAVA_HOME:D:\software\jdk1.5 TOMCAT_HOME:D:\tomcat5.5 2.Tomcat 该默认端口 改写"D:\tomcat5.5\conf\server.xml"文件,如下: <Connector port="80" maxHttpHeaderSize="8192" ...
演示地址:http://www.yaohaixiao.com/code/alertbox/index.htm <!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=&q ...

优先队列的实现

    博客分类:
  • Util
package Heap; import MyInterface.Comparator; import MyInterface.Queue; import java.util.NoSuchElementException; import java.util.Arrays; public class PriorityQueue<T> implements Queue<T> { private T[] arr; private int qSize; private Comparator<T> comp; public ...

堆操作

    博客分类:
  • Util
Comparator接口 package MyInterface; public interface Comparator<T> { int compare(T x, T y); } package Heap; import MyInterface.Comparator; public class Greater<T> implements Comparator<T> { public int compare(T x, T y) { return -((Comparable<T>)x).compareTo(y ...
目前较为流行的Ajax框架一览 http://www.open-open.com/3_67.htm Eclipse RAP Eclipse RAP项目的目的是让开发人员能够利用Eclipse开发模型来构建Rich,Ajax-enabled Web应用程序。主要运用著名的Eclipse平台扩展点插件机制和一个包含SWT/JFace API的widge ...
Global site tag (gtag.js) - Google Analytics