问答详情
源自:2-1 js实现延迟切换

代码的在这里的作用

1.function $(id){  return typeof id==='string'?document.getElementsById(id):id;  }有什么作用,为什么要写在这个地方

提问者:慕粉1010304163 2017-04-25 11:03

个回答

  • you_belong_to_me
    2017-07-29 16:50:23

    function $(id){  return typeof id==='string'?document.getElementsById(id):id;  }

    $  函数名。

    id 参数

    如果传入的id是字符串类型的。返回 document.getElementById(id)


  • 乱不乱步
    2017-04-25 17:22:24

    简单的代码封装,要不然下面通过id获取dom要写两次,这是任何语言都会用到的封装思想