摘要: 1.添加isapi映射模块;2.设置独立应用程序池,注意php版本,5.2,要设置程序池32位。64位下配置IIS+PHP出现404.17错误的解决办法 阅读全文
posted @ 2015-09-15 09:05 feva 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 项目地址:https://github.com/snipertulip/BannerRotator演示地址:http://snipertulip.github.io/BannerRotator/demo/下载地址:https://github.com/snipertulip/BannerRotato... 阅读全文
posted @ 2015-09-11 11:23 feva 阅读(520) 评论(0) 推荐(0) 编辑
摘要: 1. 表单样例: 项目名称: ... 阅读全文
posted @ 2014-11-07 19:31 feva 阅读(2072) 评论(0) 推荐(0) 编辑
摘要: //定义构造函数function Person(name){ this.name = name; //在构造函数中定义成员};//方法定义到构造函数的prototype 上Person.prototype.SayHello = function(){ alert("Hello, I'm " + this.name);};//子类构造函数function Employee(name, salary){ Person.call(this, name); //调用上层构造函数 this.salary = salary; //扩展的成员};//子类构造函数首先需要用上层构造 阅读全文
posted @ 2013-02-03 22:11 feva 阅读(144) 评论(0) 推荐(0) 编辑
摘要: function Person(name) //带参数的构造函数{ this.name = name; //将参数值赋给给this 对象的属性 this.SayHello = function() {console.log("Hello, I'm " + this.name);}; //给this 对象定义一个SayHello 方法。};function Employee(name, salary) //子构造函数{ Person.call(this, name); //将this 传给父构造函数 this.salary = salary; //设置一个this 的 阅读全文
posted @ 2013-02-03 21:31 feva 阅读(204) 评论(0) 推荐(0) 编辑
摘要: function MyFunc() {}; //定义一个空函数var anObj = new MyFunc(); //使用new 操作符,借助MyFun 函数,就创建了一个对象function MyFunc(){};var anObj = {}; //创建一个对象MyFunc.call(anObj); //将anObj 对象作为this 指针调用MyFunc 函数 阅读全文
posted @ 2013-02-03 17:53 feva 阅读(133) 评论(0) 推荐(0) 编辑