Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 HTML 可以这样说:
<ul> <li class="test"></li> <li class="test"></li> <li class="test"></li> <li></li> </ul>
现在我如何测试是否有一个或多个li具有类test?
li
test
$("li").hasClass("test");似乎没有做这项工作...
$("li").hasClass("test");
谢谢
$("li.test").size() > 0表示至少有一个li具有类test。
$("li.test").size() > 0
if ($("li.test").length > 0) { //your code }
如果你有一个li选择,你可以使用.is(".test")
.is(".test")
如果你想知道有多少人有这门课,你可以做$("li.test").length
$("li.test").length