怎么封装document.getElementById方法方便使用呢
function byId(id){ return typeof(id)==="string"?document.getElementById(id):id; }