How can I select an element by name with jQuery?

前端 未结 14 2532
迷失自我
迷失自我 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:53

    Any attribute can be selected using [attribute_name=value] way. See the sample here:

    var value = $("[name='nameofobject']");
    

提交回复
热议问题