单项选择题
A.$("ul:li:first") B.$("ul.li-first") C.$("ulli-first") D.$("ulli:first")
选取每个<ul>元素的第一个<li>元素()A.$("ul li:first")B.$("ul li:firs...
单项选择题选取每个<ul>元素的第一个<li>元素()
A.$("ul li:first") B.$("ul li:first-child") C.$("ul li:1-child") D.$("ul li:0-child")
选取带有href属性的元素()A.$("[href]")B.$("href")C.$("#href")D.$(...
单项选择题选取带有href属性的元素()
A.$("[href]") B.$("href") C.$("#href") D.$(".href")
选取所有type=“button”的<input>元素和<button>元素()A.$("button")B....
单项选择题选取所有type=“button”的<input>元素和<button>元素()
A.$("button") B.$("#button") C.$("first:button") D.$(":button")