The code _javascript skill of JS traversing object's attribute

Source: Internet
Author: User
Such as:
Copy Code code as follows:

Function.prototype.addmethod=function (Methodname,func) {
if (!this.prototype[methodname]) {
This.prototype[methodname]=func;//adds a method to the prototype that affects the instance of the type
}
Return this.prototype;//Returns the prototype, this type instance can be called by a chain
}
function CustomObject (name,value) {
This.name=name | | ' Customeobject ';
This.value=value | | 0;
This.tostring=function () {
Return ' [Name: ' +this.name+ ', Value: ' +this.value+ '] '
}
}
Customobject.addmethod (' Testfun ', function () {})
var obj=new customobject ();
var info= ';
For (Var, in obj) {
info+=property+ "| ";
}
alert (info); name | Value | toString | Testfun |

However, for-in also iterates through the attributes that the object inherits from the prototype object. You can use the hasOwnProperty statement if you want to remove the property that it inherits. Such as
Copy Code code as follows:

Function.prototype.addmethod=function (Methodname,func) {
if (!this.prototype[methodname]) {
This.prototype[methodname]=func;//adds a method to the prototype that affects the instance of the type
}
Return this.prototype;//Returns the prototype, this type instance can be called by a chain
}
function CustomObject (name,value) {
This.name=name | | ' Customeobject ';
This.value=value | | 0;
This.tostring=function () {
Return ' [Name: ' +this.name+ ', Value: ' +this.value+ '] '
}
}
Customobject.addmethod (' Testfun ', function () {})
var obj=new customobject ();
var info= ';
For (Var, in obj) {
if (!obj.hasownproperty (property)) continue;
info+=property+ "| ";
}
alert (info); name | Value | toString |

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.