Skip to content

Instantly share code, notes, and snippets.

@ayuLiao
Created January 19, 2019 11:07
Show Gist options
  • Select an option

  • Save ayuLiao/5a160186d1a544e7240e255b3d7dfe58 to your computer and use it in GitHub Desktop.

Select an option

Save ayuLiao/5a160186d1a544e7240e255b3d7dfe58 to your computer and use it in GitHub Desktop.
语法 描述
$(this) 当前 HTML 元素
$("p") 所有 <p> 元素
$("p.intro") 所有 class="intro" 的 <p> 元素
$(".intro") 所有 class="intro" 的元素
$("#intro") id="intro" 的元素
$("ul li:first") 每个 <ul> 的第一个 <li> 元素
$("[href$='.jpg']") 所有带有以 ".jpg" 结尾的属性值的 href 属性
$("div#intro .head") id="intro" 的 <div> 元素中的所有 class="head" 的元素
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment