摘要: 浏览器对象模型 BOM基本的BOM体系结构:一、window对象window对象是BOM对象的核心。所有对象和集合都以某种方式回接到window对象。alert(window.document === document); truewindow对象表示整个浏览器窗口。如果页面使用框架集合,每个框架都由它自己的window对象表示,存放在frames集合中。window.frames[0] wind... 阅读全文
posted @ 2010-11-24 09:55 1024114660 阅读(404) 评论(1) 推荐(0)
摘要: 天翼应用工厂http://api.189works.com/list 这里提供了大量的API接口,而且基本都是免费的,可谓是个大宝库。简单介绍几个 网易有道API查询IP地址:http://www.youdao.com/smartresult-xml/search.s?type=ip&q=IP地址如:http://www.youdao.com/smartresult-xml/search.... 阅读全文
posted @ 2010-11-24 09:53 1024114660 阅读(484) 评论(0) 推荐(1)
摘要: 1.关于mod_dav_svn模块关于svn的安装与配置参考http://hi.baidu.com/1024114660/blog/item/83cfffc6fe904bccd10060a4.htm这里只介绍如何使用apache访问版本库Subversion有两种运行方式,一种是基于Apache Http Server,另外一种是Subversion Standalone Server。由于Sub... 阅读全文
posted @ 2010-11-24 09:41 1024114660 阅读(290) 评论(0) 推荐(0)
摘要: svn配置与使用一、安装方法一、命令行安装在ubuntu下命令行安装apt-get install subversion如果提示缺少包可以用apt-get install subversion--fix-mising。方法二、下载安装包http://subversion.tigris.org/downloads/subversion-1.6.13.tar.gz解压:tar zxvf subvers... 阅读全文
posted @ 2010-11-24 09:38 1024114660 阅读(162) 评论(0) 推荐(0)
摘要: <?php/*** php中的魔术方法* @author dxk**/class Henu {public $name = "zxh<br />";/***构造方法*当实例化一个对象的时候,这个对象的这个方法首先被调用。*/function __construct() {echo "构造方法<br />";}/*** php5对象模型和类名相同的函数也是类的构造函数,... 阅读全文
posted @ 2010-11-24 09:37 1024114660 阅读(112) 评论(0) 推荐(0)