具有如下定义的 Person 函数,
function Person() {
this.GetContactDetail = function() {
// Can I make a call to GetFullDetail function over here is it possible ,
// I tried but it doesnt calls the GetFullDetail function
this.GetFullDetail;
};
this.GetFullDetail = function() {
};
};
var objPer = new Person();
objPer.GetContactDetail();
上面的代码只是一个片段供参考。