(function() {
    var sgClass = {

        //功能：获取ID或者ID下面的标签
        $_: function(id, tag) {
            return (tag) ? document.getElementById(id).getElementsByTagName(tag) : document.getElementById(id);
        },
     
     
    };
    window.sg = sgClass;
})();


