//Passed?in?FF2.0,?IE7,?Opera9.25,?Safari3.0.4 var?cf1=new?CF("aaa",?"bbb"); var?cf2=new?CF(111,?222); document.write(cf1.CFP1?+?"<br?/>");?//result:?CFP1?in?Cfp document.write(cf2.CFP1?+?"<br?/>");?//result:?CFP1?in?Cfp //it will result in a local property in cf1 cf1.CFP1="new?value?for?cf1";//给sf1赋了个本地对象cfp1,在使用cf1.CFP1的时候就优先寻找这个cfp1 //changes on CF.prototype.CFP1 will affect cf2 but not cf1, because there's already a local property with //the name CFP1 in cf1, but no such one in cf2 CF.prototype.CFP1="new?value?for?Cfp"; document.write(cf1.CFP1?+?"<br?/>