调用方法: function GetProvinceByid(id) { if (id == null || id == undefined || id == "") return null; return jQuery.grep(jQuery(provinces), function (item) { return item.id == id; })[0]; } function GetCityByProvinceid(provinceid) { if (provinceid ==…
function alertFunc(str1,str2,str3){ alert(str1); alert(str2); alert(str3); } function callAlert(functionName){ var func=eval(functionName); new func(arguments[1],arguments[2],arguments[3]); }…