var g = function () { return document.getElementById(""); } 这个id是不用给的吗
必须要的,获取DOM对象
var g = function(id){
return document.getElementById(id);
}