当前位置:首页 > H5 > 正文内容

javascript使用原型为内置对象增加方法

高老师8年前 (2017-10-07)H51984
//字面量的形式创建原型对象
/*
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());

扫描二维码推送至手机访问。

版权声明:本文由高久峰个人博客发布,如需转载请注明出处。

本文链接:https://blog.20230611.cn/post/261.html

分享给朋友:

“javascript使用原型为内置对象增加方法” 的相关文章

Javascript封装的原生Ajax请求

Javascript封装的原生Ajax请求

由于工作需要长期使用Ajax,一个页面重复的AJAX请求太多,于是封装起来,只需要编写回调函数/* ------------- 使用方法: 1.ajaxrequest()函数执行准备的参数(1.请求地址2.发送数据字符串拼接3.type值可选get/post4.回调函数名称)   exam...

HTML5的离线缓存技术

HTML5的离线缓存技术

离线缓存的开启实例使用apache设置 1.apache配置文件搜索Addtype,我的addtype已经存在项目,如下    AddType application/x-compress .Z    AddType application/x-gz...

Javascript绑定事件和移除事件

Javascript绑定事件和移除事件

<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> </head> <body>...

 js获取当前位置信息, js获取当前位置经纬度

js获取当前位置信息, js获取当前位置经纬度

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body>...

js 点击复制,js实现手机端点击复制,js实现点击复制,js点击复制到剪贴板

js 点击复制,js实现手机端点击复制,js实现点击复制,js点击复制到剪贴板

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>点击复制</title> </head>...