1.
var g =function(id){
if(id.substr(0,1)==‘·‘)
{
return document.getElementByClassName(id.substr(1));
}
return document.getElementById
(id);}
2.
function $(id)
{return typeof id==='string'?document.getElementById
(id):id;}
添加回答
举报
0/150
提交
取消