日期:2014-05-16  浏览次数:20411 次

function ById(owe){ return document.getElementById(owe);
这是什么都是什么意思啊?  这个函数名  ById 我也没定义啊???在 js  起什么作用??
function ById(owe){
     return document.getElementById(owe);
}
------解决方案--------------------
自定义方法啊  document.getElementById写起来麻烦  所以顶一个byId来调用啊
------解决方案--------------------
var table1 = ById('table1'); 

等价于

var table1 = document.getElementById('table1'); 


function ById(owe){
return document.getElementById(owe);
} 是函数定义啊


------解决方案--------------------
写函数方法的时候函数名又不需要提前定义的
你这个函数是参数元素的ID号,获取他的Dom元素而已