單項(xiàng)選擇題想要獲取到select元素內(nèi)被選中的option元素,以下書(shū)寫(xiě)正確的是()。

A.$("select").filter("option:selected")
B.$("select").find("option:selected")
C.$("select").is("option:selected")
D.$("select").has("option:selected")


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題jQuery中的加號(hào)選擇器相當(dāng)于以下哪個(gè)方法?()

A.next()
B.siblings()
C.nextAll()
D.prev()

3.單項(xiàng)選擇題()方法可以使元素重復(fù)切換樣式?

A.className()
B.addClass()
C.toggleClass()
D.removeClass()

4.單項(xiàng)選擇題已知代碼var $a=$(";#a1";),$b=$(";#b1";),$c=$(";#c1";);如果想將$c插入到$a的前面,以下代碼正確的是()。

A.$a.before($c);
B.$c.appendTo($a);
C.$c.before($a);
D.$a.prependTo($c);

5.單項(xiàng)選擇題()方法可以阻止事件冒泡?

A.preventDefault()
B.stopPropagation()
C.return true
D.stop()