jQuery passing element ID into jquery statement?

前端 未结 6 1981
野性不改
野性不改 2020-12-11 03:12

I\'d like to pass the ID of an element into a function which then calls jQuery. However, I\'m stumped as to how to actually take the ID variable and concatenate it with othe

6条回答
  •  南笙
    南笙 (楼主)
    2020-12-11 03:34

    Just do this--

    myfunction('obj')
    function myfunction(obj){
    $('#'+obj+' img').show();
    }
    

    Or, even

    myfunction($('#2 img a'));
    
    myfunction(jqobj){
    jqobj.show();
    }
    

提交回复
热议问题