首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴Fanklola的代码贴全部
<!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="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>

<body>
<script>
    function CNode(index,value)
{
   this.index=index;
......................
阅读全部 | 2014年3月18日 17:00
<script>
 /*工厂模式是用于当很多对象都要调用一个对象里的各种共同方法时*/
 var page = page || {};
 page.dom = page.dom || {};
 //子函数1:处理文本
 page.dom.Text = function () { 
    this.insert = function (where) {  
var txt = document.createTextNode(this.url);
where.appendChild(txt);
};
 };
 //子函数2:处理链接
......................
阅读全部 | 2014年2月21日 09:20
1
Fanklola