//字面量的形式创建原型对象 /* function Box(){} Box.prototype={ 'name':'gao', age:23, fun:function(){ return this.name+'--'+this.age; } } var box1=new Box(); console.log(box1.age) console.log(box1.constructor) */ //1.使用字面量后constructor会指向Object,因为Box.prototype={}这种写法创建了一个新的对象导致. //解决方式如下: function Box(){} Box.prototype={ constructor:Box, 'name':'gao', age:23, fun:function(){ return this.name+'--'+this.age; } } var box1=new Box(); console.log(box1.age) console.log(box1.constructor) //2.原型对象不仅仅在自定义对象中可以使用,内置的引用类型都可以使用,并且本身页使用了原型 var box2=[1,15,9,8,6,12]; console.log(Array.prototype.sort()); //3.给原型增加方法 String.prototype.addstring=function(){ return this+'-Hello!'; } console.log('China'.addstring());
离线缓存的开启实例使用apache设置 1.apache配置文件搜索Addtype,我的addtype已经存在项目,如下 AddType application/x-compress .Z AddType application/x-gz...
捕捉模式从DOM最顶层一直到最后一层,冒泡正好相反,具体运行以下实例测试.<!DOCTYPE html> <html> <head> <title>捕捉和冒泡</title> <meta charset="...
<!DOCTYPE html> <html> <head> <title>捕捉和冒泡</title> <meta charset="utf-8"> </head> <bo...
开发需求如下,商品下单后需要指定送到日期:送达日期为周一 周三 周六 ,如果今天周一,用户选择周一即为下一周周一。代码如下:<html> <head> <meta charset="utf-8"> <title>...
<!doctype html> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> </head> ...
代码1:<!--代码开始--> <script src="http://lib.sinaapp.com/js/jquery/1.9.1/jquery-1.9.1.min.js"></script> <script>...