使用.prototype扩展对象和自定义对象
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用.prototype扩展对象和自定义对象相关的知识,希望对你有一定的参考价值。
Extend a custom object, and a pre-defined object(e.g. string) using .prototype available in JS.
//Extending an existing object function yourMethod(){ //statements } //Attach it to the String Object String.prototype.methodName=yourMethod; //Usage var myVariable = "My String Here!" myVariable.methodName(); //Extending a custom object //Create custom object function myObject() { //statements } //Create custom method function customMethod(){ //statements } //Create custom property function customProperty() { //statements } //Attach the property and method myObject.prototype.methodName=customMethod; myObject.prototype.prpertyName=customProperty;
以上是关于使用.prototype扩展对象和自定义对象的主要内容,如果未能解决你的问题,请参考以下文章