JQuery selector logical “and”

后端 未结 3 2166
感动是毒
感动是毒 2021-02-14 00:47

How can I access elements that have name X and type hidden?

相关标签:
3条回答
  • 2021-02-14 01:28

    You should try this if you want type=hidden

    $('input[name="X"][type="hidden"]')
    

    If you want an element that is hidden via css then you should try

    $('[name="X"]:hidden')
    
    0 讨论(0)
  • 2021-02-14 01:35
    $('[name="X"]:hidden').dosomething();
    

    This will select an element with a name="X" attribute which is hidden. You can learn lots more about jQuery selectors - there's plenty of useful help there.

    0 讨论(0)
  • 2021-02-14 01:49
    $('[type="hidden"][name="X"]');
    

    See: http://api.jquery.com/multiple-attribute-selector/

    0 讨论(0)
提交回复
热议问题