How can I select an element by name with jQuery?

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

    Frameworks usually use bracket names in forms, like:

    
    

    They can be accessed by:

    // in JS:
    this.querySelectorAll('[name="user[first_name]"]')
    
    // in jQuery:
    $('[name="user[first_name]"]')
    
    // or by mask with escaped quotes:
    this.querySelectorAll("[name*=\"[first_name]\"]")
    

提交回复
热议问题