call 的使用例子
例如:
function Person(){
this.Name="keewang";
}
function PersonKee(){
Person.call(this);
这里函数的解释是:
PersonKee将引用Person体内的所有函数和变量;
类似C#里德继承关系