How can I select an element by name with jQuery?

前端 未结 14 2775
迷失自我
迷失自我 2020-11-22 05:13

Have a table column I\'m trying to expand and hide:

jQuery seems to hide the td elements when I select it by class but not by element\'s name.

<
14条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-22 05:49

    I've done like this and it works:

    $('[name="tcol1"]')
    

    https://api.jquery.com/attribute-equals-selector/

提交回复
热议问题