How can I select an element by name with jQuery?

前端 未结 14 2553
迷失自我
迷失自我 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 06:00

    You can get the element in JQuery by using its ID attribute like this:

    $("#tcol1").hide();
    

提交回复
热议问题