2014-01-16 97 views
0

如何使用javascript執行以下操作?使用javascript定位元素中的特定元素

$("div.details.counter span")

我可以使用ID's但我很好奇我們如何能做到上面得到的東西與純JavaScript的jQuery的風格。

+2

['Document.querySelectorAll()'](https://developer.mozilla.org/en-US/docs/Web/API/Document.querySelectorAll) –

+0

@DhavalMarthak謝謝! –

+0

我對jQuery並不熟悉。你能解釋一下上面的表達式嗎? –

回答

2

與純JavaScript通過jQuery的支持的大多數選擇的解決方案是使用document.querySelectorAll

document.querySelectorAll("div.details.counter span") 

如果你不具備querySelectorAll支持您選擇的瀏覽器,你可以看看jQuery的實現的selector engine看看它如何匹配選擇器的各個部分。