//是否存在指定变量 function isExitsVariable(variableName){ try{ if(typeof(variableName)=="undefined"){ //alert("value is undefined"); return false; }else{ //alert("value is true"); return true; } }catch(e){ } return false; } //javascript/8745