Object.prototype.exist = function(){ if(typeof this !='undefined' && this.length>=1){ return true; } return false; }; 不解釋 Object.prototype.exist = fun ...
Object.prototype.exist =
function
(){
if
(
typeof
this
!=
'undefined'
&&
this
.length>=1){
return
true
;
}
return
false
;
};
不解釋