Skip to content

Instantly share code, notes, and snippets.

@Restoration
Created October 26, 2016 10:45
Show Gist options
  • Select an option

  • Save Restoration/2532984689fb8f6f6432ec75dbabf521 to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/2532984689fb8f6f6432ec75dbabf521 to your computer and use it in GitHub Desktop.
jQueryセレクタのAnd,OR指定

#jQueryセレクタのAnd,OR指定 ##AND operation

a=$('[myc="blue"][myid="1"][myid="3"]');

##OR operation, use commas

a=$('[myc="blue"],[myid="1"],[myid="3"]');

##複数指定

a=$('[myc="blue"][myid="1"],[myc="blue"][myid="3"]');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment