JavaScript Double Dollar Sign

后端 未结 5 2178
别那么骄傲
别那么骄傲 2020-11-29 06:54

I understand the use of the (single) dollar sign in popular JavaScript libraries such as jQuery and Prototype. I also understand the significance of the double dollar sign i

5条回答
  •  一个人的身影
    2020-11-29 07:50

    Double dollar sign is referenced in the following terms -

    //getElementById    
      function $$(id){
        return document.getElementById(id);
      }
    

提交回复
热议问题